
Story: 2008529 Task: 41923 Signed-off-by: Bin Yang <bin.yang@windriver.com> Change-Id: If2237b94fada714e87f5e58e4563cbcea8fe5aff
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
#
|
|
# Copyright (c) 2021 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
class NodeNotAvailable(Exception):
|
|
def __init__(self, node_name):
|
|
self.node_name = node_name
|
|
def __str__(self):
|
|
return "Node:{0} not available".format(self.node_name)
|
|
|
|
|
|
class ResourceNotAvailable(Exception):
|
|
def __init__(self, node_name, resource_type):
|
|
self.node_name = node_name
|
|
self.resource_type = resource_type
|
|
def __str__(self):
|
|
return "Resource with type:{0} is not available on node:{1}".format(
|
|
self.resource_type, self.node_name)
|
|
|
|
|
|
class InvalidEndpoint(Exception):
|
|
def __init__(self, endpoint_uri):
|
|
self.endpoint_uri = endpoint_uri
|
|
|
|
def __str__(self):
|
|
return "Endpoint is invalid:{0}".format(self.endpoint_uri)
|
|
|
|
|
|
class InvalidSubscription(Exception):
|
|
def __init__(self, subscriptioninfo):
|
|
self.subscriptioninfo = subscriptioninfo
|
|
|
|
def __str__(self):
|
|
return "Subscription is invalid:{0}".format(self.subscriptioninfo.to_dict())
|