示例#1
0
 public ManagerException(string message, ManagerExceptionType type, object data)
     : base(message)
 {
     this.type = type;
     this.data = data;
 }
示例#2
0
 public ManagerException(string message, ManagerExceptionType type, Exception inner)
     : base(message, inner)
 {
     this.type = type;
 }
示例#3
0
 public ManagerException(ManagerExceptionType ReturnCode)
 {
     this.ReturnCode = (int)ReturnCode;
 }
示例#4
0
 public ManagerException(string message, ManagerExceptionType type)
     : base(message)
 {
     this.type = type;
 }