/**
 * @module ValueConvertError
 */
import Exception from './Exception';
export default class ValueConvertError extends Exception {
    constructor(value: any, ctor: any, message?: string);
}
