Skip to content

Commit

Permalink
add missing class
Browse files Browse the repository at this point in the history
  • Loading branch information
infeo committed Feb 20, 2024
1 parent 2da2da6 commit 5c92b3a
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package org.cryptomator.integrations.common;

@CheckAvailability
public class InitExceptionTestClass {

private static final String TEST;

static {
TEST = throwSomethig();
}

public InitExceptionTestClass() {

}

static String throwSomethig() {
throw new RuntimeException("STATIC FAIL");
}

@CheckAvailability
public static boolean test() {
return true;
}

}

0 comments on commit 5c92b3a

Please sign in to comment.