feat(logging): add SpeckleWarning class

This commit is contained in:
izzy lyseggen
2021-08-06 16:08:18 +01:00
parent 9a1f28516d
commit a512dbb4e4
+5
View File
@@ -28,3 +28,8 @@ class GraphQLException(SpeckleException):
def __str__(self) -> str:
return f"GraphQLException: {self.message}"
class SpeckleWarning(Warning):
def __init__(self, *args: object) -> None:
super().__init__(*args)