opstack-kit-chains
Version:
Support your OP-Stack network with 'opstack-kit'
12 lines (10 loc) • 366 B
text/typescript
import { BaseError } from './base.js'
export type FilterTypeNotSupportedErrorType = FilterTypeNotSupportedError & {
name: 'FilterTypeNotSupportedError'
}
export class FilterTypeNotSupportedError extends BaseError {
override name = 'FilterTypeNotSupportedError'
constructor(type: string) {
super(`Filter type "${type}" is not supported.`)
}
}