1 package projectmanagement.spec; 2 3 import com.lutris.util.ChainedException; 4 /** 5 * ProjectManagementBusinessException. 6 * @author Sasa Bojanic 7 * @version 1.0 8 */ 9 public class ProjectManagementException extends ChainedException { 10 11 /** 12 * Public constructor to initialize an exception with a user message 13 * and the exception that spawned it 14 */ 15 public ProjectManagementException(String msg, Throwable ex) { 16 super(msg, ex); 17 } 18 19 /** 20 * Public constructor to initialize an exception with a user message 21 */ 22 public ProjectManagementException(String msg) { 23 super(msg); 24 } 25 } 26