aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/CLException.java
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-08-25 12:59:35 +0200
committerMichael Bien <[email protected]>2010-08-25 12:59:35 +0200
commit4836f3ab7916c681450d06f118b90c31f0bcdc8c (patch)
tree1c6fcf378168f0611123c9da5c8f05f6da2fec99 /src/com/jogamp/opencl/CLException.java
parent7bd341b72fc69a9a5fedb25ef1f15ebe08141212 (diff)
added new CL_INVALID_PROPERTY exception + CLException junit test.
Diffstat (limited to 'src/com/jogamp/opencl/CLException.java')
-rw-r--r--src/com/jogamp/opencl/CLException.java20
1 files changed, 17 insertions, 3 deletions
diff --git a/src/com/jogamp/opencl/CLException.java b/src/com/jogamp/opencl/CLException.java
index e7133994..4955cc42 100644
--- a/src/com/jogamp/opencl/CLException.java
+++ b/src/com/jogamp/opencl/CLException.java
@@ -14,8 +14,9 @@ public class CLException extends RuntimeException {
public final int errorcode;
public final String error;
- private final static String ERROR_CODE_DOC =
- "http://www.khronos.org/opencl/sdk/1.1/docs/man/xhtml/errors.html";
+ //man page no longer exists
+// private final static String ERROR_CODE_DOC =
+// "http://www.khronos.org/opencl/sdk/1.1/docs/man/xhtml/errors.html";
public CLException(String message) {
super(message);
@@ -24,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 + "\nerror: " + errorStr/* + " (man page: "+ERROR_CODE_DOC+")"*/);
this.error = errorStr;
this.errorcode = errorcode;
}
@@ -113,6 +114,7 @@ public class CLException extends RuntimeException {
case CL_INVALID_BUFFER_SIZE: return "CL_INVALID_BUFFER_SIZE";
case CL_INVALID_MIP_LEVEL: return "CL_INVALID_MIP_LEVEL";
case CL_INVALID_GLOBAL_WORK_SIZE: return "CL_INVALID_GLOBAL_WORK_SIZE";
+ case CL_INVALID_PROPERTY: return "CL_INVALID_PROPERTY";
case CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR: return "CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR";
case CL_PLATFORM_NOT_FOUND_KHR: return "CL_PLATFORM_NOT_FOUND_KHR";
case CL_MISALIGNED_SUB_BUFFER_OFFSET: return "CL_MISALIGNED_SUB_BUFFER_OFFSET";
@@ -169,6 +171,7 @@ public class CLException extends RuntimeException {
case CL_INVALID_BUFFER_SIZE: return new CLInvalidBufferSizeException(message);
case CL_INVALID_MIP_LEVEL: return new CLInvalidMipLevelException(message);
case CL_INVALID_GLOBAL_WORK_SIZE: return new CLInvalidGlobalWorkSizeException(message);
+ case CL_INVALID_PROPERTY: return new CLInvalidPropertyException(message);
case CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR: return new CLInvalidGLSharegroupReferenceKhrException(message);
case CL_PLATFORM_NOT_FOUND_KHR: return new CLPlatformNotFoundKhrException(message);
case CL_MISALIGNED_SUB_BUFFER_OFFSET: return new CLMisalignedSubBufferOffsetException(message);
@@ -684,6 +687,17 @@ public class CLException extends RuntimeException {
}
/**
+ * {@link CLException} thrown on CL.CL_INVALID_PROPERTY errors.
+ * @author Michael Bien
+ */
+ public final static class CLInvalidPropertyException extends CLException {
+ private static final long serialVersionUID = CLException.serialVersionUID+CL_INVALID_PROPERTY;
+ public CLInvalidPropertyException(String message) {
+ super(CL_INVALID_PROPERTY, "CL_INVALID_PROPERTY", message);
+ }
+ }
+
+ /**
* {@link CLException} thrown on CL.CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR errors.
* @author Michael Bien
*/