mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-22 12:18:12 +08:00
8 lines
178 B
Python
8 lines
178 B
Python
class OptionsError(Exception):
|
|
"""
|
|
Raised when user specified cli options specified fail parsing
|
|
"""
|
|
|
|
def __init__(self, message):
|
|
self.message = message
|