Ejemplo n.º 1
0
 public override void UpdateInternal()
 {
     try  {
         Result = continuation.Run();
     } catch (YieldException) {
         return;
     } catch (System.Exception e) {
         Result = new ProcedureResult {
             Error = Service.Services.Instance.HandleException(e)
         };
     }
 }
Ejemplo n.º 2
0
 public override void Update()
 {
     try  {
         Result = continuation.Run();
     } catch (YieldException) {
         return;
     } catch (System.Exception e) {
         Result = new ProcedureResult {
             Error = Core.HandleException(e)
         };
     }
 }