/**
 * The CeleraOne ErrorResponse object interface
 *
 * @interface InternalErrorResponse
 */
export default interface InternalErrorResponse {
    name: string;
    locaction: string;
    description: string;
}
