//-----------------------------------------------------------------------
// 
//     Copyright (c) Microsoft Corporation.
// 
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop
{
    /// 
    /// Constants to be used with JET_paramExceptionAction.
    /// 
    public enum JET_ExceptionAction
    {
        /// 
        /// Display message box on exception.
        /// 
        MsgBox = 0x00000001,
        
        /// 
        /// Do not handle exceptions. Throw them to the caller.
        /// 
        None = 0x00000002,
    }
}