mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-20 00:51:41 +00:00
11 lines
255 B
Python
11 lines
255 B
Python
class PipelineAlreadyExistsException(Exception):
|
|
|
|
def __init__(self, pipe_name):
|
|
super(f"Pipeline {pipe_name} already exists")
|
|
|
|
|
|
class NoCameraConnectedException(Exception):
|
|
|
|
def __init__(self):
|
|
super("No camera as been detected")
|