Skip to content

Commit

Permalink
[feature] Add AbaqusException class to abaqus package (#5610)
Browse files Browse the repository at this point in the history
Fixes #5609
  • Loading branch information
haiiliin authored Jul 3, 2024
1 parent bcd57cb commit e8a1328
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/abaqus/UtilityAndView/AbaqusException.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from __future__ import annotations


class AbaqusException(Exception): ...
1 change: 1 addition & 0 deletions src/abaqus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from .Session.Session import Session # noqa
from .UtilityAndView import abaqusConstants # noqa
from .UtilityAndView.abaqusConstants import OFF, Boolean # noqa
from .UtilityAndView.AbaqusException import AbaqusException # noqa
from .UtilityAndView.BackwardCompatibility import BackwardCompatibility # noqa
from .UtilityAndView.SymbolicConstant import SymbolicConstant # noqa
from .UtilityAndView.User import * # noqa
Expand Down

0 comments on commit e8a1328

Please sign in to comment.