exceptions.py 256 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. """
  3. Exception classes for the tx client.
  4. """
  5. class UnInitializedError(Exception):
  6. """The project directory has not been initialized."""
  7. class UnknownCommandError(Exception):
  8. """The provided command is not supported."""