Files
cellxgene/server/utils/errors.py
T

8 lines
178 B
Python

class OptionsError(Exception):
"""
Raised when user specified cli options specified fail parsing
"""
def __init__(self, message):
self.message = message