/********************************************************************************************************************************* This class has been automatically generated using KLTT-APIRestGenerator project, don't do manual file modifications. Mon Oct 22 12:45:25 CEST 2018 "Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements; and to You under the Apache License, Version 2.0. " **********************************************************************************************************************************/ /** * This class is the standard HTTP exception to handle this type of errors */ export declare class StandardHttpException { status: number; error: string; message: string; exception: string; path: string; timestamp: number; /** * Public constructor * @param status with the status code */ constructor(status: number); /** * @param status the status to set */ setStatus(status: any): void; /** * @return the status */ getStatus(): number; /** * @param error the error to set */ setError(error: any): void; /** * @return the error */ getError(): string; /** * @param message the message to set */ setMessage(message: any): void; /** * @return the message */ getMessage(): string; /** * @param exception the exception to set */ setException(exception: any): void; /** * @return the exception */ getException(): string; /** * @param path the path to set */ setPath(path: any): void; /** * @return the path */ getPath(): string; /** * @param timestamp the timestamp to set */ setTimestamp(timestamp: any): void; /** * @return the timestamp */ getTimestamp(): number; /** * @return the object as string */ toString(): string; }