File size: 252 Bytes
e00b837
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# This file was auto-generated by Fern from our API Definition.

import typing

from ..core.api_error import ApiError


class InternalServerError(ApiError):
    def __init__(self, body: typing.Any):
        super().__init__(status_code=500, body=body)