1 16 17 package org.apache.jetspeed.services.urlmanager; 18 19 import java.io.IOException ; 20 21 29 public class ContentNotAvailableException extends IOException { 30 31 public static final String MESSAGE = "The following URL is not in the disk cache: "; 32 33 public ContentNotAvailableException( String url ) { 34 35 super( MESSAGE + url ); 36 37 } 38 39 40 } 41 42 | Popular Tags |