1 package net.sf.jlayercheck.util.exceptions;
2
3 public class OverlappingModulesDefinitionException extends Exception {
4 /** SUID */
5 private static final long serialVersionUID = -2437761350644402423L;
6
7 protected String message;
8
9 public OverlappingModulesDefinitionException(String msg) {
10 this.message = msg;
11 }
12
13 /**
14 * @return the message
15 */
16 public String getMessage() {
17 return message;
18 }
19 }