C# 클래스 PayPal.PayPalException

Represents an error that occurred in the PayPal SDK.
상속: System.Exception
파일 보기 프로젝트 열기: paypal/PayPal-NET-SDK 1 사용 예제들

공개 메소드들

메소드 설명
PayPalException ( ) : PayPal.Log

Initializes a new PayPalException with no exception details set.

PayPalException ( string message ) : PayPal.Log

Represents errors that occur during application execution

PayPalException ( string message, System cause ) : PayPal.Log

Initializes a new PayPalException and sets the exception message and cause.

보호된 메소드들

메소드 설명
LogDefaultMessage ( string message ) : void

Helper method for logging a message when this object is created. Derived classes can override this to log more specific exception information without cluttering up the logfile.

LogMessage ( string message ) : void

Helper method that logs a message related to this exception to the logfile.

LogMessage ( string message, System ex ) : void

Helper method that logs a message related to this exception to the logfile.

PayPalException ( PayPalException ex ) : PayPal.Log

Copy constructor provided by convenience for derived classes.

메소드 상세

LogDefaultMessage() 보호된 메소드

Helper method for logging a message when this object is created. Derived classes can override this to log more specific exception information without cluttering up the logfile.
protected LogDefaultMessage ( string message ) : void
message string The message to be logged.
리턴 void

LogMessage() 보호된 메소드

Helper method that logs a message related to this exception to the logfile.
protected LogMessage ( string message ) : void
message string The exception message to be logged.
리턴 void

LogMessage() 보호된 메소드

Helper method that logs a message related to this exception to the logfile.
protected LogMessage ( string message, System ex ) : void
message string The exception message to be logged.
ex System Optional System.Exception object to include in the log message.
리턴 void

PayPalException() 공개 메소드

Initializes a new PayPalException with no exception details set.
public PayPalException ( ) : PayPal.Log
리턴 PayPal.Log

PayPalException() 보호된 메소드

Copy constructor provided by convenience for derived classes.
protected PayPalException ( PayPalException ex ) : PayPal.Log
ex PayPalException The original exception to copy information from.
리턴 PayPal.Log

PayPalException() 공개 메소드

Represents errors that occur during application execution
public PayPalException ( string message ) : PayPal.Log
message string The message that describes the error
리턴 PayPal.Log

PayPalException() 공개 메소드

Initializes a new PayPalException and sets the exception message and cause.
public PayPalException ( string message, System cause ) : PayPal.Log
message string The message that describes the error
cause System The exception that is the cause of the current exception
리턴 PayPal.Log