diff options
author | Michael Bien <[email protected]> | 2009-11-08 21:48:29 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2009-11-08 21:48:29 +0100 |
commit | d2050aea14e6ab1a6429eab56f0612c2deb6184f (patch) | |
tree | ecb5b0fa28e3cc592b053cef7ac1dab3edcb684d /src/com/mbien/opencl/CLException.java | |
parent | c33ac63fb62d3d27979ca56bb577c18f745f70d4 (diff) |
improved Exception handling in CLProgram and CLKernel.
introduced CLResource interface for releasable resources.
CLProgram is now rebuildable.
Diffstat (limited to 'src/com/mbien/opencl/CLException.java')
-rw-r--r-- | src/com/mbien/opencl/CLException.java | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/src/com/mbien/opencl/CLException.java b/src/com/mbien/opencl/CLException.java index c080b164..db4426f8 100644 --- a/src/com/mbien/opencl/CLException.java +++ b/src/com/mbien/opencl/CLException.java @@ -6,20 +6,23 @@ package com.mbien.opencl; */ public class CLException extends RuntimeException { - public CLException(Throwable cause) { - super(cause); - } - - public CLException(String message, Throwable cause) { - super(message, cause); - } - - public CLException(String message) { - super(message); - } + public final int errorcode; + +// public CLException(Throwable cause) { +// super(cause); +// } +// +// public CLException(String message, Throwable cause) { +// super(message, cause); +// } +// +// public CLException(String message) { +// super(message); +// } public CLException(int error, String message) { super(identifyError(error) + ": " + message); + errorcode = error; } public static final void checkForError(int status, String message) { |