mirror of
https://github.com/certd/certd.git
synced 2026-04-22 02:47:25 +08:00
6 lines
155 B
TypeScript
6 lines
155 B
TypeScript
export class NoPermissionError extends Error {
|
|
constructor(message?: string) {
|
|
super(message || "对不起,您没有权限执行此操作");
|
|
}
|
|
}
|