Files
legado/modules/book/src/main/java/me/ag2s/base/ThrowableUtils.java

16 lines
350 B
Java

package me.ag2s.base;
import androidx.annotation.NonNull;
import java.io.IOException;
public class ThrowableUtils {
public static @NonNull
IOException rethrowAsIOException(Throwable throwable) throws IOException {
IOException newException = new IOException(throwable.getMessage(), throwable);
throw newException;
}
}