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.

21 lines
408 B

  1. class InvalidFileType(Exception):
  2. """Non .nd2 extension file.
  3. File does not have an extension .nd2.
  4. """
  5. pass
  6. class InvalidVersionError(Exception):
  7. """Unknown version.
  8. We don't know how to parse the version of ND2 that we were given.
  9. """
  10. pass
  11. class EmptyFileError(Exception):
  12. """This .nd2 file seems to be empty.
  13. Raised if no axes are found in the file.
  14. """