File: exceptions.pyi

package info (click to toggle)
python-box 7.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 572 kB
  • sloc: python: 3,471; makefile: 4
file content (5 lines) | stat: -rw-r--r-- 217 bytes parent folder | download
1
2
3
4
5
class BoxError(Exception): ...
class BoxKeyError(BoxError, KeyError, AttributeError): ...
class BoxTypeError(BoxError, TypeError): ...
class BoxValueError(BoxError, ValueError): ...
class BoxWarning(UserWarning): ...