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