File size: 268 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
export class InvariantError extends Error {
constructor(message: string, options?: ErrorOptions) {
super(
`Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,
options
)
this.name = 'InvariantError'
}
}
|