01: package edu.indiana.lib.osid.base.repository.http;
02:
03: public class MetasearchException extends
04: org.osid.repository.RepositoryException {
05: private static org.apache.commons.logging.Log _log = edu.indiana.lib.twinpeaks.util.LogUtils
06: .getLog(MetasearchException.class);
07:
08: public static final String SESSION_TIMED_OUT = "Metasearch session has timed out.";
09: public static final String METASEARCH_ERROR = "Metasearch error has occured.";
10: public static final String ASSET_NOT_FETCHED = "An Asset is available, but has not yet been fetched.";
11:
12: protected MetasearchException(String message) {
13: super(message);
14: }
15: }
|