7 lines
288 B
Python
7 lines
288 B
Python
from .base import LibraryExceptionBase
|
|
|
|
#010010
|
|
class LibraryCreationException(LibraryExceptionBase):
|
|
def __init__(self, name, error, object_name, data, *, status_code=400):
|
|
self.code = "010010"
|
|
super().__init__(name, error, object_name, data, status_code=status_code) |