InScriptExceptionBase.h 630 B

123456789101112131415
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. #pragma once
  6. namespace Js {
  7. // This class serves as base class for runtime in-script exception objects, so that code here
  8. // (lib/common) can catch and handle runtime in-script exceptions.
  9. class InScriptExceptionBase
  10. {
  11. };
  12. } // namespace Js