oneuptime/Copilot/Exceptions/NotAcceptedFileExtention.ts

9 lines
353 B
TypeScript

import ExceptionCode from "Common/Types/Exception/ExceptionCode";
import CopilotActionProcessingException from "./CopilotActionProcessingException";
export default class NotAcceptedFileExtentionForCopilotAction extends CopilotActionProcessingException {
public constructor(message: string) {
super(ExceptionCode.BadDataException, message);
}
}