next.js / packages /next /src /shared /lib /invariant-error.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
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'
}
}