C# 클래스 FlickrNet.FlickrApiException

상속: FlickrException
파일 보기 프로젝트 열기: liquidboy/X

공개 메소드들

메소드 설명
FlickrApiException ( ) : System

Initializes a new instance of the FlickrApiException class.

FlickrApiException ( int code, string message ) : System

Initializes a new instance of the FlickrApiException class with a specific code and message.

The code and message returned from Flickr are used to generate the exceptions message.

FlickrApiException ( string message ) : System

Initializes a new instance of the FlickrApiException class with a specified error message.

FlickrApiException ( string message, Exception innerException ) : System

Initializes a new instance of the FlickrApiException class with a specified error message and a reference to the inner exception that is the cause of this exception.

메소드 상세

FlickrApiException() 공개 메소드

Initializes a new instance of the FlickrApiException class.
public FlickrApiException ( ) : System
리턴 System

FlickrApiException() 공개 메소드

Initializes a new instance of the FlickrApiException class with a specific code and message.
The code and message returned from Flickr are used to generate the exceptions message.
public FlickrApiException ( int code, string message ) : System
code int The error code supplied by Flickr.
message string The error message supplied by Flickr.
리턴 System

FlickrApiException() 공개 메소드

Initializes a new instance of the FlickrApiException class with a specified error message.
public FlickrApiException ( string message ) : System
message string
리턴 System

FlickrApiException() 공개 메소드

Initializes a new instance of the FlickrApiException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public FlickrApiException ( string message, Exception innerException ) : System
message string
innerException System.Exception
리턴 System