Devendra174's picture
Upload folder using huggingface_hub
1e92f2d 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'
}
}