All Downloads are FREE. Search and download functionalities are using the official Maven repository.

z3-z3-4.13.0.src.api.dotnet.Z3Exception.cs Maven / Gradle / Ivy

The newest version!
/*++
Copyright (c) 2012 Microsoft Corporation

Module Name:

    Exception.cs

Abstract:

    Z3 Managed API: Exceptions

Author:

    Christoph Wintersteiger (cwinter) 2012-03-15

Notes:

--*/

using System.Diagnostics;
using System;

namespace Microsoft.Z3
{
    /// 
    /// The exception base class for error reporting from Z3
    /// 
#if !DOTNET_CORE
  [Serializable]
#endif
    public class Z3Exception : Exception
  {
    /// 
    /// Constructor.
    /// 
    public Z3Exception() : base() { }

    /// 
    /// Constructor.
    /// 
    public Z3Exception(string message) : base(message) { }

    /// 
    /// Constructor.
    /// 
    public Z3Exception(string message, System.Exception inner) : base(message, inner) { }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy