Beispiel #1
0
 public UserException(string message)
     : base(message)
 {
     Unilog.Exception(this, typeof(UserException), message);
 }
Beispiel #2
0
 public UserException(string message, Exception innerException)
     : base(message, innerException)
 {
     Unilog.Exception(innerException, typeof(UserException), message);
 }