15 lines
264 B
Python
15 lines
264 B
Python
class PhasmPlatformError(Exception):
|
|
pass
|
|
|
|
|
|
class PhashPlatformRuntimeError(PhasmPlatformError):
|
|
pass
|
|
|
|
|
|
class PhashPlatformServiceNotFound(PhashPlatformRuntimeError):
|
|
pass
|
|
|
|
|
|
class PhashPlatformServiceMethodNotFound(PhashPlatformRuntimeError):
|
|
pass
|