1 | import { BaseException } from './BaseException';
|
2 | export declare class LogicalException extends BaseException {
|
3 | }
|
4 | export declare class DomainException extends BaseException {
|
5 | }
|
6 | export declare class InvalidArgumentException extends BaseException {
|
7 | }
|
8 | export declare class RangeException extends BaseException {
|
9 | }
|
10 | export declare class RuntimeException extends BaseException {
|
11 | }
|
12 | export declare class HttpException extends BaseException {
|
13 | }
|