case fix 1

This commit is contained in:
Jindra Petřík
2016-07-18 09:05:41 +02:00
parent f322581a31
commit 38eb716fdd

View File

@@ -0,0 +1,11 @@
package com.jpexs.decompiler.flash.amf.amf3;
import java.io.IOException;
public class PrematureEndOfTheStreamException extends IOException {
public PrematureEndOfTheStreamException() {
super("Premature end of the stream reached");
}
}