All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zeroturnaround.zip.ZipExceptionUtil Maven / Gradle / Ivy

package org.zeroturnaround.zip;

import java.io.IOException;

class ZipExceptionUtil {

  /**
   * Rethrow the given exception as a runtime exception.
   */
  static ZipException rethrow(IOException e) {
    throw new ZipException(e);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy