import { IExceptionHandler } from "./IExceptionHandler";
import { HttpContext } from "..";
/**
 * Default ExceptionHandler to handle all expceptions in rest api
 */
export declare class ExceptionHandler implements IExceptionHandler {
    /**
     * Method for handle exception
     * @param context HttpContext Object
     * @param exception Exception Object
     */
    handleException(context: HttpContext, exception: any): void;
}
