mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
9 lines
282 B
TypeScript
9 lines
282 B
TypeScript
import Exception from "Common/Types/Exception/Exception";
|
|
import ExceptionCode from "Common/Types/Exception/ExceptionCode";
|
|
|
|
export default class CopilotActionException extends Exception {
|
|
public constructor(code: ExceptionCode, message: string) {
|
|
super(code, message);
|
|
}
|
|
}
|