C# 클래스 Core.Framework.MEF.Throw.Throw

파일 보기 프로젝트 열기: coreframework/Core-Framework

공개 메소드들

메소드 설명
ConfigurationErrors ( String message, Exception>.Func modifier = null ) : void

Throws a ConfigurationErrorsException with the specified message.

InvalidOperation ( String message, Exception>.Func modifier = null ) : void

Throws a InvalidOperationException with the specified message.

NotSupported ( String message, Exception>.Func modifier = null ) : void

Throws a NotSupportedException with the specified message.

비공개 메소드들

메소드 설명
IfArgumentNull ( object argument, String argumentName, Exception>.Func modifier = null ) : void
IfArgumentNullOrEmpty ( String argument, String argumentName, Exception>.Func modifier = null ) : void
ThrowInternal ( Exception exception, Exception>.Func modifier = null ) : void

메소드 상세

ConfigurationErrors() 공개 정적인 메소드

Throws a ConfigurationErrorsException with the specified message.
public static ConfigurationErrors ( String message, Exception>.Func modifier = null ) : void
message String The message to throw.
modifier Exception>.Func A modifier delegate used to modify the exception before being thrown.
리턴 void

InvalidOperation() 공개 정적인 메소드

Throws a InvalidOperationException with the specified message.
public static InvalidOperation ( String message, Exception>.Func modifier = null ) : void
message String The message to throw.
modifier Exception>.Func A modifier delegate used to modify the exception before being thrown.
리턴 void

NotSupported() 공개 정적인 메소드

Throws a NotSupportedException with the specified message.
public static NotSupported ( String message, Exception>.Func modifier = null ) : void
message String The message to throw.
modifier Exception>.Func A modifier delegate used to modify the exception before being thrown.
리턴 void