Azavea.Open.DAO.Exceptions.DaoTypeCoercionException.DaoTypeCoercionException C# (CSharp) Method

DaoTypeCoercionException() public method

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).
return System
        public DaoTypeCoercionException(Type desiredType, object value, Exception innerException)
            : this(desiredType, value, "an exception occurred.", innerException)
        {
        }

Same methods

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