コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:Light.Oaks.AuthorizeException"/> class.
 /// </summary>
 /// <param name="type"></param>
 /// <param name="message"></param>
 /// <param name="innerException">Inner exception.</param>
 public AuthorizeException(AuthorizeErrorType type, string message, Exception innerException) : base(message, innerException)
 {
     Type = type;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:Light.Oaks.AuthorizeException"/> class.
 /// </summary>
 /// <param name="type"></param>
 /// <param name="message"></param>
 public AuthorizeException(AuthorizeErrorType type, string message) : base(message)
 {
     Type = type;
 }