mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 08:54:53 +01:00
added base of exception classes
This commit is contained in:
parent
0af3f77416
commit
bbb6840b13
2 changed files with 13 additions and 1 deletions
|
|
@ -1,7 +1,11 @@
|
|||
from .publish_plugins import (
|
||||
PublishValidationError,
|
||||
KnownPublishError,
|
||||
OpenPypePyblishPluginMixin
|
||||
)
|
||||
|
||||
__all__ = (
|
||||
"OpenPypePyblishPluginMixin",
|
||||
"PublishValidationError",
|
||||
"KnownPublishError",
|
||||
"OpenPypePyblishPluginMixin"
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,11 @@
|
|||
class PublishValidationError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class KnownPublishError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class OpenPypePyblishPluginMixin:
|
||||
executable_in_thread = False
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue