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