* minor: Generate model exception sometime not display on console.
This commit is contained in:
parent
0579531cd1
commit
f898f4d773
|
@ -891,6 +891,7 @@ public class ModelClassGenerator
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
log.log(Level.SEVERE, fileName, ex);
|
log.log(Level.SEVERE, fileName, ex);
|
||||||
|
throw new RuntimeException(ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -468,6 +468,7 @@ public class ModelInterfaceGenerator {
|
||||||
log.info(out.getAbsolutePath() + " - " + size + " kB");
|
log.info(out.getAbsolutePath() + " - " + size + " kB");
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
log.log(Level.SEVERE, fileName, ex);
|
log.log(Level.SEVERE, fileName, ex);
|
||||||
|
throw new RuntimeException(ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue