exceptions.py 280 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. class NoSelectedQuakesError(Exception):
  3. """Any quakes were not selected"""
  4. class ConnectDatabaseError(Exception):
  5. """Program can't connect to the Database"""
  6. class FormatToStrError(Exception):
  7. """Program can't format sequence to string"""