Forgot to add throws CoreException to public interface in java wrapper

This commit is contained in:
Sylvain Berfini 2017-10-10 13:38:36 +02:00
parent 03a625226b
commit a208e415e5

View file

@ -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}}
}