export class PropertyDoesNotExist extends Schema.TaggedError<PropertyDoesNotExist>()(
"PropertyDoesNotExist",
{
title: Schema.string,
content: Schema.string,
},
) {
// args is showing up as the never type atm....
static make(args: Schema.Schema.Type<typeof PropertyDoesNotExist.fields>){
return new PropertyDoesNotExist(args);
}
}
export class PropertyDoesNotExist extends Schema.TaggedError<PropertyDoesNotExist>()(
"PropertyDoesNotExist",
{
title: Schema.string,
content: Schema.string,
},
) {
// args is showing up as the never type atm....
static make(args: Schema.Schema.Type<typeof PropertyDoesNotExist.fields>){
return new PropertyDoesNotExist(args);
}
}