exceptions.py 680 B

123456789101112131415161718192021222324
  1. """
  2. Copyright (c) Contributors to the Open 3D Engine Project.
  3. For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. SPDX-License-Identifier: Apache-2.0 OR MIT
  5. Exceptions that can occur while interacting with a Launcher
  6. """
  7. class EditorToolsFrameworkException(Exception):
  8. """ Indicates that an Exception resulted from inside the LyTestTools framework """
  9. pass
  10. class LyTestToolsFrameworkException(Exception):
  11. """ Indicates that an Exception resulted from inside the LyTestTools framework """
  12. pass
  13. class TestResultException(Exception):
  14. """Indicates that an unknown result was found during the tests"""
  15. pass