maestro-server/scheduler-app

View on GitHub
app/error/clientMaestroError.py

Summary

Maintainability
A
0 mins
Test Coverage

class Error(Exception):
    """Base class for exceptions in this module."""
    pass

class ClientMaestroError(Error):

    def __init__(self, msg):
        self.msg = msg