public UserException(string message) : base(message) { Unilog.Exception(this, typeof(UserException), message); }
public UserException(string message, Exception innerException) : base(message, innerException) { Unilog.Exception(innerException, typeof(UserException), message); }