mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-16 21:37:59 +08:00
44 lines
809 B
Python
44 lines
809 B
Python
class FilterError(Exception):
|
|
"""
|
|
Raised when filter is malformed
|
|
"""
|
|
|
|
def __init__(self, message):
|
|
self.message = message
|
|
|
|
|
|
class InteractiveError(Exception):
|
|
"""
|
|
Raised when computation would exceed interactive time
|
|
"""
|
|
|
|
def __init__(self, message):
|
|
self.message = message
|
|
|
|
|
|
class MimeTypeError(Exception):
|
|
"""
|
|
Raised when incompatible MIME type selected
|
|
"""
|
|
|
|
def __init__(self, message):
|
|
self.message = message
|
|
|
|
|
|
class PrepareError(Exception):
|
|
"""
|
|
Raised when data is misprepared
|
|
"""
|
|
|
|
def __init__(self, message):
|
|
self.message = message
|
|
|
|
|
|
class ScanpyFileError(Exception):
|
|
"""
|
|
Raised when file loaded into scanpy is misformatted
|
|
"""
|
|
|
|
def __init__(self, message):
|
|
self.message = message
|