JAL-2805 made needed color set methods public
[jalview.git] / forester / java / src / org / forester / util / UserException.java
1
2 package org.forester.util;
3
4 public class UserException extends Exception {
5
6     private static final long serialVersionUID = -4607485599991434499L;
7
8     public UserException( final String message ) {
9         super( message );
10     }
11
12     public UserException() {
13         super();
14     }
15 }