File size: 227 Bytes
3f72838
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
"""Application-level exceptions."""


class AppError(Exception):
    def __init__(self, detail: str, status_code: int = 400):
        self.detail = detail
        self.status_code = status_code
        super().__init__(detail)