コード例 #1
0
 public BackendException(BackendExceptionType type, string message)
     : base(message)
 {
     Type = type;
 }
コード例 #2
0
 public BackendException(BackendExceptionType type)
     : this(type, "")
 {
     Type = type;
 }