Exemple #1
0
 public PSAdminException(string Message, PSAdminExceptionType exceptionType, Exception innerException) : base(Message, innerException)
 {
     exceptionType = ExceptionType;
 }
Exemple #2
0
 public PSAdminException(PSAdminExceptionType exceptionType, params string[] args) : this(exceptionType, null, args)
 {
 }
Exemple #3
0
 public PSAdminException(PSAdminExceptionType exceptionType, Exception innerException, params string[] args) : this(String.Format(PSAdminExceptionHelper.errorStrings[exceptionType], args), exceptionType, innerException)
 {
 }
Exemple #4
0
 public PSAdminException(PSAdminExceptionType exceptionType) : this(PSAdminExceptionHelper.errorStrings[exceptionType], exceptionType, null)
 {
 }