mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-28 11:40:32 +00:00
16 lines
516 B
TypeScript
16 lines
516 B
TypeScript
// This file was auto-generated by Fern from our API Definition.
|
|
|
|
import type * as core from "../../core/index.js";
|
|
import * as errors from "../../errors/index.js";
|
|
|
|
export class ConflictError extends errors.SkyvernError {
|
|
constructor(body?: unknown, rawResponse?: core.RawResponse) {
|
|
super({
|
|
message: "ConflictError",
|
|
statusCode: 409,
|
|
body: body,
|
|
rawResponse: rawResponse,
|
|
});
|
|
Object.setPrototypeOf(this, ConflictError.prototype);
|
|
}
|
|
}
|