mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
Simplified scripts using /MD option
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
b1a5436c3f
commit
463297d264
40 changed files with 2 additions and 2 deletions
44
src/dotnet/Microsoft.Z3/Z3Exception.cs
Normal file
44
src/dotnet/Microsoft.Z3/Z3Exception.cs
Normal file
|
@ -0,0 +1,44 @@
|
|||
/*++
|
||||
Copyright (c) 2012 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
Exception.cs
|
||||
|
||||
Abstract:
|
||||
|
||||
Z3 Managed API: Exceptions
|
||||
|
||||
Author:
|
||||
|
||||
Christoph Wintersteiger (cwinter) 2012-03-15
|
||||
|
||||
Notes:
|
||||
|
||||
--*/
|
||||
|
||||
using System;
|
||||
|
||||
namespace Microsoft.Z3
|
||||
{
|
||||
/// <summary>
|
||||
/// The exception base class for error reporting from Z3
|
||||
/// </summary>
|
||||
public class Z3Exception : Exception
|
||||
{
|
||||
/// <summary>
|
||||
/// Constructor.
|
||||
/// </summary>
|
||||
public Z3Exception() : base() { }
|
||||
|
||||
/// <summary>
|
||||
/// Constructor.
|
||||
/// </summary>
|
||||
public Z3Exception(string message) : base(message) { }
|
||||
|
||||
/// <summary>
|
||||
/// Constructor.
|
||||
/// </summary>
|
||||
public Z3Exception(string message, System.Exception inner) : base(message, inner) { }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue