Quote:
Originally Posted by KevinH
Perhaps we can work with Doitsu to return a -1 from his plugin if any exceptions are thrown.
|
Currently, the plugin only checks for Stack Overflow errors:
Code:
# check for StackOverflowError error
if stderr.find('java.lang.StackOverflowError') != -1:
print('EPUBCheck Java error.\n', stderr)
return -1
What other common Java error messages should I check for and how did you trigger them for testing purposes?