1 11 package org.eclipse.core.internal.content; 12 13 import java.io.IOException ; 14 import org.eclipse.core.runtime.Assert; 15 16 25 class LowLevelIOException extends IOException { 26 27 30 private static final long serialVersionUID = 1L; 31 32 private IOException actual; 33 34 public LowLevelIOException(IOException actual) { 35 Assert.isLegal(!(actual instanceof LowLevelIOException)); 37 this.actual = actual; 38 } 39 40 public IOException getActualException() { 41 return actual; 42 } 43 } 44 | Popular Tags |