simplify GridError definition

This commit is contained in:
Jan Petykiewicz 2021-01-08 23:03:22 -08:00
parent 1067c3b780
commit f338d06be6

View File

@ -1,9 +1,2 @@
class GridError(Exception): class GridError(Exception):
""" pass
Simple Exception for Grid
"""
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)