예제 #1
0
 /// <summary>
 /// Creates a new security session exception
 /// </summary>
 public SecuritySessionException(SessionExceptionType type, String message, Exception innerException) : this(type, null, message, innerException)
 {
 }
예제 #2
0
 /// <summary>
 /// Creates a new security session exception
 /// </summary>
 public SecuritySessionException(SessionExceptionType type, ISession session, String message, Exception innerException) : base(message, innerException)
 {
     this.Type    = type;
     this.Session = session;
 }