328a4c62c6c183a5576840e5436ba8b14cdc3c00
[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  * @author Erik Brakkee
7  */
8 public class SystemAssemblyException extends RuntimeException {
9
10         /**
11          * Constructs the exception. 
12          * @param aMsg Message. 
13          */
14         public SystemAssemblyException(String aMsg) { 
15                 super(aMsg); 
16         }
17         
18         /**
19          * Constructs the exception. 
20          * @param aMsg Message
21          * @param aCause Cause. 
22          */
23         public SystemAssemblyException(String aMsg, Throwable aCause) { 
24                 super(aMsg, aCause);
25         }
26 }