コード例 #1
0
ファイル: PSAdminExceptions.cs プロジェクト: M1kep/PSAdmin
 public PSAdminException(string Message, PSAdminExceptionType exceptionType, Exception innerException) : base(Message, innerException)
 {
     exceptionType = ExceptionType;
 }
コード例 #2
0
ファイル: PSAdminExceptions.cs プロジェクト: M1kep/PSAdmin
 public PSAdminException(PSAdminExceptionType exceptionType, params string[] args) : this(exceptionType, null, args)
 {
 }
コード例 #3
0
ファイル: PSAdminExceptions.cs プロジェクト: M1kep/PSAdmin
 public PSAdminException(PSAdminExceptionType exceptionType, Exception innerException, params string[] args) : this(String.Format(PSAdminExceptionHelper.errorStrings[exceptionType], args), exceptionType, innerException)
 {
 }
コード例 #4
0
ファイル: PSAdminExceptions.cs プロジェクト: M1kep/PSAdmin
 public PSAdminException(PSAdminExceptionType exceptionType) : this(PSAdminExceptionHelper.errorStrings[exceptionType], exceptionType, null)
 {
 }