import { AbstractException } from './AbstractException'; /** @codex-xmi-id e69e95de-7a8a-5a20-aa99-323530fdd6cf */ export declare class WrongRequestException extends AbstractException { message: string; errors: any | undefined; constructor(message: string, errors?: any | undefined); }