public ErroneousScriptLoaderException(Script script, AstNode entity, ElfExceptionType reason)
     : base(reason)
 {
     Script = script;
     Entity = entity;
     Script.ToString();
 }
 public ErroneousScriptRuntimeException(ElfExceptionType type, VirtualMachine vm, Exception innerException)
     : base(type, String.Empty, innerException)
 {
     VM = vm;
     Thread = VM.CurrentThread;
 }
 public SemanticErrorException(string input, CommonTree node, ElfExceptionType type)
     : base(type)
 {
     Input = input;
     Node = node;
 }
 protected ErroneousScriptException(ElfExceptionType type)
     : base(type)
 {
 }
 protected ErroneousScriptException(ElfExceptionType type, string message, Exception innerException)
     : base(type, message, innerException)
 {
 }
 protected ErroneousScriptException(ElfExceptionType type, string message)
     : base(type, message)
 {
 }
Exemple #7
0
 protected ElfException(ElfExceptionType type) 
 {
     Type = type;
 }
Exemple #8
0
 protected ElfException(ElfExceptionType type, string message, Exception innerException)
     : base(message, innerException) 
 {
     Type = type;
 }
Exemple #9
0
 protected ElfException(ElfExceptionType type, string message) 
     : base(message) 
 {
     Type = type;
 }