Exemple #1
0
 /// Constructs a ContextException with a message and ContextExceptionType
 public ContextException(string message, ContextExceptionType exceptionType) : base(message)
 {
     type = exceptionType;
 }
Exemple #2
0
 public ContextException(ContextExceptionType type, string message) : base($"{type} [{message}]")
 {
 }
Exemple #3
0
 public ContextException(ContextExceptionType type) : base(type.ToString())
 {
 }
		/// Constructs a ContextException with a message and ContextExceptionType
		public ContextException(string message, ContextExceptionType exceptionType) : base(message)
		{
			type = exceptionType;
		}