From a208e415e55a941ac8b3a0d3f24cd9fa94bb30ba Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 10 Oct 2017 13:38:36 +0200 Subject: [PATCH] Forgot to add throws CoreException to public interface in java wrapper --- wrappers/java/java_class.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrappers/java/java_class.mustache b/wrappers/java/java_class.mustache index 51ab7f613..89f1a38de 100644 --- a/wrappers/java/java_class.mustache +++ b/wrappers/java/java_class.mustache @@ -93,7 +93,7 @@ public interface {{className}} { {{/lines}} */ {{/doc}} - public {{return}} {{name}}({{params}}){{#exception}} throws CoreException{{/exception}}; + public {{return}} {{name}}({{params}}){{#exception}} throws CoreException{{/exception}}{{#enumCast}} throws CoreException{{/enumCast}}; {{/staticMethods}} }