/** * Created by Phan Trung Nguyên. * User: nguyenpl117 * Date: 8/27/2020 * Time: 9:18 AM */ import { Application } from "../Application"; export declare class Handler { protected app: Application; /** * A list of the internal exception types that should not be reported. * * @var array */ protected internalDontReport: any[]; protected dontReport: any[]; constructor(app: Application); report(e: any): any; protected shouldntReport(e: any): boolean; render(error: any): any; protected convertValidationExceptionToResponse(error: any): any; }