mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
Beginnings of a Java API. This is under heavy construction.
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
e37a347b33
commit
985145d810
36 changed files with 11224 additions and 11 deletions
28
src/api/java/com/Microsoft/Z3/Z3Exception.java
Normal file
28
src/api/java/com/Microsoft/Z3/Z3Exception.java
Normal file
|
@ -0,0 +1,28 @@
|
|||
/**
|
||||
* This file was automatically generated from Z3Exception.cs
|
||||
**/
|
||||
|
||||
package com.Microsoft.Z3;
|
||||
|
||||
/* using System; */
|
||||
|
||||
/**
|
||||
* The exception base class for error reporting from Z3
|
||||
**/
|
||||
public class Z3Exception extends Exception
|
||||
{
|
||||
/**
|
||||
* Constructor.
|
||||
**/
|
||||
public Z3Exception() { super(); }
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
**/
|
||||
public Z3Exception(String message) { super(message); }
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
**/
|
||||
public Z3Exception(String message, System.Exception inner) { super(message, inner); }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue