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