/** * Application exception, used by `throw` */ declare class Exception extends Error { readonly code?: string; readonly valueObject: any; constructor(message?: string, code?: string, valueObject?: any); constructor(message: string, valueObject: any); } export { Exception };