11 lines
142 B
Python
11 lines
142 B
Python
|
class NoArgError(Exception):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class StationNotFoundError(Exception):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ServerCommunicationError(Exception):
|
||
|
pass
|