Azavea.Open.DAO.Exceptions.DaoUnsupportedTypeCoercionException.DaoUnsupportedTypeCoercionException C# (CSharp) Метод

DaoUnsupportedTypeCoercionException() публичный Метод

Creates a coercion exception for when the type being coerced to is not supported.
public DaoUnsupportedTypeCoercionException ( Type desiredType, object value ) : System
desiredType System.Type Type we were trying to coerce the value to.
value object The value that was trying to be coerced.
Результат System
        public DaoUnsupportedTypeCoercionException(Type desiredType, object value)
            : base(desiredType, value, "that type is not yet supported.", null)
        {
        }
DaoUnsupportedTypeCoercionException