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