add another fix for #27 'parser doesn't handle truncated input files'

This commit is contained in:
Eyck Jentzsch 2020-03-11 23:11:42 +01:00
parent 0634556256
commit 77302521b2
1 changed files with 2 additions and 0 deletions

View File

@ -88,6 +88,8 @@ public class TextDbLoader implements IWaveformDbLoader{
}
} catch (IndexOutOfBoundsException e) {
return false
} catch (IllegalArgumentException e) {
return false
} catch (NumberFormatException e) {
return false
} catch(EOFException e) {