summaryrefslogtreecommitdiff
path: root/rtslib/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'rtslib/utils.py')
-rw-r--r--rtslib/utils.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/rtslib/utils.py b/rtslib/utils.py
index 286dbc1..46f10c3 100644
--- a/rtslib/utils.py
+++ b/rtslib/utils.py
@@ -451,7 +451,9 @@ def _set_auth_attr(self, value, attribute, ignore=False):
path = "%s/%s" % (self.path, attribute)
value = value.strip()
if value == "NULL":
- raise ValueError("'NULL' is not a permitted value")
+ raise RTSLibError("'NULL' is not a permitted value")
+ if len(value) > 255:
+ raise RTSLibError("Value longer than maximum length of 255")
if value == '':
value = "NULL"
try: