SpaceFailed.java
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 package org.gecode;
00010
00011 public class SpaceFailed extends java.lang.RuntimeException {
00012 private long swigCPtr;
00013 protected boolean swigCMemOwn;
00014
00015 protected SpaceFailed(long cPtr, boolean cMemoryOwn) {
00016 swigCMemOwn = cMemoryOwn;
00017 swigCPtr = cPtr;
00018 }
00019
00020 protected static long getCPtr(SpaceFailed obj) {
00021 return (obj == null) ? 0 : obj.swigCPtr;
00022 }
00023
00024 protected void finalize() {
00025 delete();
00026 }
00027
00028 public void delete() {
00029 if(swigCPtr != 0 && swigCMemOwn) {
00030 swigCMemOwn = false;
00031 GecodeJNI.delete_SpaceFailed(swigCPtr);
00032 }
00033 swigCPtr = 0;
00034 }
00035
00036 public SpaceFailed(String msg) {
00037 this(GecodeJNI.new_SpaceFailed(msg), true);
00038 }
00039
00040 }