C# 클래스 Azavea.Open.DAO.Exceptions.DaoTypeCoercionException

This is the type of exception thrown by CoerceType.
상속: Azavea.Open.Common.LoggingException
파일 보기 프로젝트 열기: azavea/net-dao

공개 프로퍼티들

프로퍼티 타입 설명
DesiredType System.Type
Value object

공개 메소드들

메소드 설명
DaoTypeCoercionException ( Type desiredType, object value, Exception innerException ) : System

Creates a coercion exception.

DaoTypeCoercionException ( Type desiredType, object value, string reason, Exception innerException ) : System

Creates a coercion exception.

메소드 상세

DaoTypeCoercionException() 공개 메소드

Creates a coercion exception.
public DaoTypeCoercionException ( Type desiredType, object value, Exception innerException ) : System
desiredType System.Type Type we were trying to coerce the value to.
value object The value that was trying to be coerced.
innerException System.Exception Exception that was thrown (if any, may be null).
리턴 System

DaoTypeCoercionException() 공개 메소드

Creates a coercion exception.
public DaoTypeCoercionException ( Type desiredType, object value, string reason, Exception innerException ) : System
desiredType System.Type Type we were trying to coerce the value to.
value object The value that was trying to be coerced.
reason string Why it did not work.
innerException System.Exception Exception that was thrown (if any, may be null).
리턴 System

프로퍼티 상세

DesiredType 공개적으로 프로퍼티

Type we were trying to coerce the value to.
public Type,System DesiredType
리턴 System.Type

Value 공개적으로 프로퍼티

The value that was trying to be coerced.
public object Value
리턴 object