package org.wamblee.system; /** * Exception thrown when an error occurs in assembling the systems. */ public class SystemAssemblyException extends RuntimeException { /** * Constructs the exception. * @param aMsg Message. */ public SystemAssemblyException(String aMsg) { super(aMsg); } /** * Constructs the exception. * @param aMsg Message * @param aCause Cause. */ public SystemAssemblyException(String aMsg, Throwable aCause) { super(aMsg, aCause); } }