Ejemplo n.º 1
0
 protected IntegrationException(IntegrationExceptionType type, IntegrationContext ctx, Exception innerException)
     : base(innerException)
 {
     Type = type;
     Context = ctx;
 }
 public JSToCSharpIntegrationException(IntegrationExceptionType type, IntegrationContext ctx, String jsVariable, Exception innerException)
     : base(type, ctx, innerException)
 {
     JSVariable = jsVariable;
 }
 public CSharpToJSIntegrationException(IntegrationExceptionType type, IntegrationContext ctx, Object csharpObject, Exception innerException) 
     : base(type, ctx, innerException)
 {
     CSharpObject = csharpObject;
 }
 public JSToCSharpIntegrationException(IntegrationExceptionType type, IntegrationContext ctx, String jsVariable)
     : this(type, ctx, jsVariable, null)
 {
 }
 public CSharpToJSIntegrationException(IntegrationExceptionType type, IntegrationContext ctx, Object csharpObject)
     : this(type, ctx, csharpObject, null)
 {
 }