01: package org.sakaibrary.osid.repository.xserver;
02:
03: public class MetasearchException extends
04: org.osid.repository.RepositoryException {
05:
06: private static final long serialVersionUID = 1L;
07:
08: public static final String METASEARCH_ERROR = "Metasearch error has occured.";
09: public static final String SESSION_TIMED_OUT = "Metasearch session has "
10: + "timed out.";
11: public static final String ASSET_NOT_FETCHED = "An Asset is available, but"
12: + " has not yet been fetched.";
13:
14: protected MetasearchException(String message) {
15: super(message);
16: }
17: }
|