From caf8c00ef82e6da698f3a3ee382ce793fd789381 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 27 Apr 2021 16:12:30 -0500 Subject: [PATCH] Use SetupError name from pgwui_core instead of the old Error --- src/pgwui_menu/exceptions.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/pgwui_menu/exceptions.py b/src/pgwui_menu/exceptions.py index 9178582..0e55962 100644 --- a/src/pgwui_menu/exceptions.py +++ b/src/pgwui_menu/exceptions.py @@ -19,15 +19,11 @@ # Karl O. Pinc -from pgwui_common import exceptions as common_ex +from pgwui_common.exceptions import SetupError as MenuError # PGWUI setting related exceptions -class MenuError(common_ex.Error): - pass - - class BadOrderItemError(MenuError): def __init__(self, components, value): super().__init__( -- 2.34.1