Beispiel #1
0
 /// <nodoc />
 public InvalidRelativePathException(string message, ErrorContext errorContext)
     : base(message, errorContext)
 {
     Contract.Requires(message != null);
 }
Beispiel #2
0
 public ConversionContext(bool allowUndefined = false, int pos = -1, SymbolAtom name = default(SymbolAtom), object objectCtx = null)
 {
     AllowUndefined = allowUndefined;
     ErrorContext = new ErrorContext(pos, name, objectCtx);
 }
Beispiel #3
0
 private ConversionContext(bool allowUndefined, ErrorContext errorContext)
 {
     AllowUndefined = allowUndefined;
     ErrorContext = errorContext;
 }
Beispiel #4
0
 /// <nodoc />
 protected EvaluationExceptionWithErrorContext(ErrorContext errorContext)
 {
     ErrorContext = errorContext;
 }