Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
181 lines
5.3 KiB
Text
181 lines
5.3 KiB
Text
import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceException";
|
|
export class AccessDeniedException extends __BaseException {
|
|
name = "AccessDeniedException";
|
|
$fault = "client";
|
|
error;
|
|
reason;
|
|
error_description;
|
|
constructor(opts) {
|
|
super({
|
|
name: "AccessDeniedException",
|
|
$fault: "client",
|
|
...opts,
|
|
});
|
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
this.error = opts.error;
|
|
this.reason = opts.reason;
|
|
this.error_description = opts.error_description;
|
|
}
|
|
}
|
|
export class AuthorizationPendingException extends __BaseException {
|
|
name = "AuthorizationPendingException";
|
|
$fault = "client";
|
|
error;
|
|
error_description;
|
|
constructor(opts) {
|
|
super({
|
|
name: "AuthorizationPendingException",
|
|
$fault: "client",
|
|
...opts,
|
|
});
|
|
Object.setPrototypeOf(this, AuthorizationPendingException.prototype);
|
|
this.error = opts.error;
|
|
this.error_description = opts.error_description;
|
|
}
|
|
}
|
|
export class ExpiredTokenException extends __BaseException {
|
|
name = "ExpiredTokenException";
|
|
$fault = "client";
|
|
error;
|
|
error_description;
|
|
constructor(opts) {
|
|
super({
|
|
name: "ExpiredTokenException",
|
|
$fault: "client",
|
|
...opts,
|
|
});
|
|
Object.setPrototypeOf(this, ExpiredTokenException.prototype);
|
|
this.error = opts.error;
|
|
this.error_description = opts.error_description;
|
|
}
|
|
}
|
|
export class InternalServerException extends __BaseException {
|
|
name = "InternalServerException";
|
|
$fault = "server";
|
|
error;
|
|
error_description;
|
|
constructor(opts) {
|
|
super({
|
|
name: "InternalServerException",
|
|
$fault: "server",
|
|
...opts,
|
|
});
|
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
this.error = opts.error;
|
|
this.error_description = opts.error_description;
|
|
}
|
|
}
|
|
export class InvalidClientException extends __BaseException {
|
|
name = "InvalidClientException";
|
|
$fault = "client";
|
|
error;
|
|
error_description;
|
|
constructor(opts) {
|
|
super({
|
|
name: "InvalidClientException",
|
|
$fault: "client",
|
|
...opts,
|
|
});
|
|
Object.setPrototypeOf(this, InvalidClientException.prototype);
|
|
this.error = opts.error;
|
|
this.error_description = opts.error_description;
|
|
}
|
|
}
|
|
export class InvalidGrantException extends __BaseException {
|
|
name = "InvalidGrantException";
|
|
$fault = "client";
|
|
error;
|
|
error_description;
|
|
constructor(opts) {
|
|
super({
|
|
name: "InvalidGrantException",
|
|
$fault: "client",
|
|
...opts,
|
|
});
|
|
Object.setPrototypeOf(this, InvalidGrantException.prototype);
|
|
this.error = opts.error;
|
|
this.error_description = opts.error_description;
|
|
}
|
|
}
|
|
export class InvalidRequestException extends __BaseException {
|
|
name = "InvalidRequestException";
|
|
$fault = "client";
|
|
error;
|
|
reason;
|
|
error_description;
|
|
constructor(opts) {
|
|
super({
|
|
name: "InvalidRequestException",
|
|
$fault: "client",
|
|
...opts,
|
|
});
|
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
this.error = opts.error;
|
|
this.reason = opts.reason;
|
|
this.error_description = opts.error_description;
|
|
}
|
|
}
|
|
export class InvalidScopeException extends __BaseException {
|
|
name = "InvalidScopeException";
|
|
$fault = "client";
|
|
error;
|
|
error_description;
|
|
constructor(opts) {
|
|
super({
|
|
name: "InvalidScopeException",
|
|
$fault: "client",
|
|
...opts,
|
|
});
|
|
Object.setPrototypeOf(this, InvalidScopeException.prototype);
|
|
this.error = opts.error;
|
|
this.error_description = opts.error_description;
|
|
}
|
|
}
|
|
export class SlowDownException extends __BaseException {
|
|
name = "SlowDownException";
|
|
$fault = "client";
|
|
error;
|
|
error_description;
|
|
constructor(opts) {
|
|
super({
|
|
name: "SlowDownException",
|
|
$fault: "client",
|
|
...opts,
|
|
});
|
|
Object.setPrototypeOf(this, SlowDownException.prototype);
|
|
this.error = opts.error;
|
|
this.error_description = opts.error_description;
|
|
}
|
|
}
|
|
export class UnauthorizedClientException extends __BaseException {
|
|
name = "UnauthorizedClientException";
|
|
$fault = "client";
|
|
error;
|
|
error_description;
|
|
constructor(opts) {
|
|
super({
|
|
name: "UnauthorizedClientException",
|
|
$fault: "client",
|
|
...opts,
|
|
});
|
|
Object.setPrototypeOf(this, UnauthorizedClientException.prototype);
|
|
this.error = opts.error;
|
|
this.error_description = opts.error_description;
|
|
}
|
|
}
|
|
export class UnsupportedGrantTypeException extends __BaseException {
|
|
name = "UnsupportedGrantTypeException";
|
|
$fault = "client";
|
|
error;
|
|
error_description;
|
|
constructor(opts) {
|
|
super({
|
|
name: "UnsupportedGrantTypeException",
|
|
$fault: "client",
|
|
...opts,
|
|
});
|
|
Object.setPrototypeOf(this, UnsupportedGrantTypeException.prototype);
|
|
this.error = opts.error;
|
|
this.error_description = opts.error_description;
|
|
}
|
|
}
|