80e7db7b286124a29bd71eedb77ea9f02f3125eb
[utils] / system / general / src / main / java / org / wamblee / system / SystemAssemblyException.java
1 package org.wamblee.system;
2
3 /**
4  * Exception thrown when an error occurs in assembling the systems.
5  */
6 public class SystemAssemblyException extends RuntimeException {
7
8         /**
9          * Constructs the exception. 
10          * @param aMsg Message. 
11          */
12         public SystemAssemblyException(String aMsg) { 
13                 super(aMsg); 
14         }
15         
16         /**
17          * Constructs the exception. 
18          * @param aMsg Message
19          * @param aCause Cause. 
20          */
21         public SystemAssemblyException(String aMsg, Throwable aCause) { 
22                 super(aMsg, aCause);
23         }
24 }