You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

errors.py 146 B

1234567891011
  1. #-*- coding: UTF-8 -*-
  2. """
  3. All possible errors.
  4. """
  5. class AssimpError(BaseException):
  6. """
  7. If an internal error occures.
  8. """
  9. pass