We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b03fda5 commit 57bdb95Copy full SHA for 57bdb95
Core/src/main/velocity/com/nativelibs4java/opencl/CLException.java
@@ -32,11 +32,6 @@ public int getCode() {
32
return code;
33
}
34
35
- @Retention(RetentionPolicy.RUNTIME)
36
- public @interface ErrorCode {
37
- int value();
38
- }
39
-
40
public static class CLVersionException extends CLException {
41
public CLVersionException(String message) {
42
super(message, 0);
@@ -272,3 +267,8 @@ public static void error(int err) {
272
267
throw toThrow;
273
268
274
269
270
+
271
+@Retention(RetentionPolicy.RUNTIME)
+@interface ErrorCode {
+ int value();
+}
0 commit comments