11 lines
336 B
Python
11 lines
336 B
Python
# This file was auto-generated by Fern from our API Definition.
|
|
|
|
import typing
|
|
|
|
from ..core.api_error import ApiError
|
|
|
|
|
|
class ConflictError(ApiError):
|
|
def __init__(self, body: typing.Optional[typing.Any], headers: typing.Optional[typing.Dict[str, str]] = None):
|
|
super().__init__(status_code=409, headers=headers, body=body)
|