6 lines
185 B
JavaScript
6 lines
185 B
JavaScript
export class BuilderNotFoundError extends Error {
|
|
constructor(builderId) {
|
|
super(`§cBuilder "${builderId}" not found.`);
|
|
this.name = 'BuilderNotFoundError';
|
|
}
|
|
} |