Files
AutoJs6/common/src/main/java/com/stardust/pio/UncheckedIOException.java

20 lines
363 B
Java

package com.stardust.pio;
import java.io.IOException;
/**
* Created by Stardust on 2017/4/1.
*/
public class UncheckedIOException extends RuntimeException {
public UncheckedIOException(IOException cause) {
super(cause);
}
@Override
public synchronized IOException getCause() {
return (IOException) super.getCause();
}
}