generalize exception handling

This commit is contained in:
Volker 2018-08-06 12:23:42 +02:00
parent ff3662db43
commit a736f41eb4

View File

@ -138,7 +138,7 @@ public class ModuleGenerator {
} else {
writer.prepareFunction( name );
}
} catch( IOException ioex ) {
} catch( Exception ioex ) {
throw WasmException.create( ioex, sourceFile, -1 );
}
}