edu.nyu.acsys.CVC4.OptionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cvc4-turnkey-permissive Show documentation
Show all versions of cvc4-turnkey-permissive Show documentation
A self-unpacking, standalone CVC4 distribution that ships all required native support code and automatically unpacks it at runtime. Permissive-licensed version.
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 4.0.1
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package edu.nyu.acsys.CVC4;
public class OptionException extends Exception {
private transient long swigCPtr;
protected OptionException(long cPtr, boolean cMemoryOwn) {
super(CVC4JNI.OptionException_SWIGUpcast(cPtr), cMemoryOwn);
swigCPtr = cPtr;
}
protected static long getCPtr(OptionException obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
@SuppressWarnings("deprecation")
protected void finalize() {
delete();
}
public synchronized void delete() {
if (swigCPtr != 0) {
if (swigCMemOwn) {
swigCMemOwn = false;
CVC4JNI.delete_OptionException(swigCPtr);
}
swigCPtr = 0;
}
super.delete();
}
public OptionException(String s) {
this(CVC4JNI.new_OptionException(s), true);
}
public String getRawMessage() {
return CVC4JNI.OptionException_getRawMessage(swigCPtr, this);
}
}