1 6 21 22 package de.schlichtherle.io; 23 24 25 import java.io.IOException ; 26 27 43 public class ArchiveWarningException extends ArchiveException { 44 45 public ArchiveWarningException( 47 ArchiveException priorZipException, 48 String message) { 49 super(priorZipException, message); 50 } 51 52 public ArchiveWarningException( 54 ArchiveException priorZipException, 55 String message, 56 IOException cause) { 57 super(priorZipException, message, cause); 58 } 59 60 public ArchiveWarningException( 62 ArchiveException priorZipException, 63 IOException cause) { 64 super(priorZipException, cause); 65 } 66 67 public int getPriority() { 68 return -1; 69 } 70 } 71 | Popular Tags |