View Javadoc

1   package net.sf.jlayercheck.util.exceptions;
2   
3   /**
4    * This exception is used in the search for orphaned classes when an error occurs.
5    * 
6    * @author webmaster@earth3d.org
7    */
8   public class OrphanedSearchException extends Exception {
9       /** SUID  */
10  	private static final long serialVersionUID = -8167511109891572811L;
11  	
12  	protected String message;
13      
14      public OrphanedSearchException(String msg) {
15          this.message = msg;
16      }
17  
18      /**
19       * @return the message
20       */
21      public String getMessage() {
22          return message;
23      }
24  }