Skip to content

Commit

Permalink
update error base class
Browse files Browse the repository at this point in the history
  • Loading branch information
giancarloromeo committed Sep 20, 2024
1 parent c667921 commit 4fb2bf2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
from functools import reduce
from typing import Annotated, Any, ClassVar, Final, TypeAlias, cast

from models_library.errors_classes import OsparcErrorMixin

import sqlalchemy as sa
from aiopg.sa.connection import SAConnection
from aiopg.sa.result import RowProxy
Expand All @@ -20,7 +22,6 @@
TypeAdapter,
ValidationError,
)
from pydantic.errors import PydanticErrorMixin
from simcore_postgres_database.utils_ordering import OrderByDict
from sqlalchemy import Column, func
from sqlalchemy.dialects import postgresql
Expand Down Expand Up @@ -64,7 +65,7 @@
"""


class FoldersError(PydanticErrorMixin, RuntimeError):
class FoldersError(OsparcErrorMixin, RuntimeError):
pass


Expand Down

0 comments on commit 4fb2bf2

Please sign in to comment.