mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 20:57:56 +08:00
53 lines
989 B
Python
53 lines
989 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 JSONEncodingValueError(Exception):
|
|
"""
|
|
Raised when file loaded into scanpy is misformatted
|
|
"""
|
|
|
|
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
|