aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/CLException.java
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-09-07 21:26:53 +0200
committerMichael Bien <[email protected]>2010-09-07 21:26:53 +0200
commit84edfc7970a0bc828ba38295d88ee6e2a4dabbce (patch)
tree32db98d8458403e8ee5d6c579852bf626d3ea3a9 /src/com/jogamp/opencl/CLException.java
parentbc4e1521cc2ccc91a033998847dc35e1a8c8687b (diff)
added com.jogamp.util.CLInfo.
introduced CLProperty annotation for CLDevice and CLPlatform properties. fixed bug in CLVersion.
Diffstat (limited to 'src/com/jogamp/opencl/CLException.java')
-rw-r--r--src/com/jogamp/opencl/CLException.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/jogamp/opencl/CLException.java b/src/com/jogamp/opencl/CLException.java
index 4955cc42..2e2843e7 100644
--- a/src/com/jogamp/opencl/CLException.java
+++ b/src/com/jogamp/opencl/CLException.java
@@ -25,7 +25,7 @@ public class CLException extends RuntimeException {
}
private CLException(int errorcode, String errorStr, String message) {
- super(message + "\nerror: " + errorStr/* + " (man page: "+ERROR_CODE_DOC+")"*/);
+ super(message + " [error: " + errorStr+"]"/* + " (man page: "+ERROR_CODE_DOC+")"*/);
this.error = errorStr;
this.errorcode = errorcode;
}