Skip to content

Commit e9e91f1

Browse files
committed
Make UnsupportedFeatureError constructor public
1 parent 2386a2d commit e9e91f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/jdk/UnsupportedFeatureError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
public class UnsupportedFeatureError extends Error {
2828
private static final long serialVersionUID = -2281164998442235179L;
2929

30-
UnsupportedFeatureError(String message) {
30+
public UnsupportedFeatureError(String message) {
3131
super(message);
3232
}
3333
}

0 commit comments

Comments
 (0)