/** * 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); } }