mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
5 lines
119 B
TypeScript
5 lines
119 B
TypeScript
export class OrganizationAllowListViolationError extends Error {
|
|
constructor(message: string) {
|
|
super(message)
|
|
}
|
|
}
|