Skip to content

Commit

Permalink
fix: export exception
Browse files Browse the repository at this point in the history
  • Loading branch information
yunj8649 committed Dec 16, 2024
1 parent 133aea5 commit c11d68d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/exception/client-exception/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ export { TokenExpiredException } from './token-expired-exception';
export { UnauthorizedException } from './unauthorized-exception';
export { ConflictException } from './conflict-exception';
export { UnprocessableEntityException } from './unprocessable-entity-exception';
export { TooManyRequestsException } from './too-many-requests-exception';
1 change: 1 addition & 0 deletions src/exception/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export {
UnauthorizedException,
ConflictException,
UnprocessableEntityException,
TooManyRequestsException,
} from './client-exception';
export { CustomException } from './custom-exception';
export { DataException, InternalServerException, ServerException, UnknownException } from './server-exception';
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export {
UnauthorizedException,
UnknownException,
ConflictException,
TooManyRequestsException,
} from './exception';
export { HttpClient, HttpState } from './http-client';
export type { HttpReqConfig, HttpRes, HttpResponse, HttpError } from './http-client';
Expand Down

0 comments on commit c11d68d

Please sign in to comment.