Skip to content

Commit 86a820e

Browse files
committed
Moved JNIException to com.arrayfire
1 parent 34a55c4 commit 86a820e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ADD_JAR(${AF_JAR}
3030
com/arrayfire/Signal.java
3131
com/arrayfire/Util.java
3232
com/arrayfire/Statistics.java
33-
com/util/JNIException.java
33+
com/arrayfire/JNIException.java
3434
com/arrayfire/ArrayFireException.java
3535
com/arrayfire/Graphics.java
3636
com/arrayfire/Window.java
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.util;
1+
package com.arrayfire;
22

3-
public class JNIException extends Exception {
3+
class JNIException extends Exception {
44
public JNIException(String message) {
55
super(message);
66
}

0 commit comments

Comments
 (0)