source: src/main/java/genius/core/session/RepositoryException.java

Last change on this file was 127, checked in by Wouter Pasman, 6 years ago

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 431 bytes
Line 
1package genius.core.session;
2
3/**
4 * Error that will be thrown when we fail to fetch data from repository XML
5 * files. RuntimeException because this is a configuration problem.
6 */
7public class RepositoryException extends RuntimeException {
8 public RepositoryException(String message, Throwable cause) {
9 super(message + ". This is caused by missing/damaged basic configuration xml files from Genius.", cause);
10 }
11
12}
Note: See TracBrowser for help on using the repository browser.