import { BaseObject } from './baseObject';
export interface ApplicationException extends BaseObject {
    message?: string;
}
