/** * This class is part of project that implements Aspectual Components * * Author: Predrag Petkovic, predrag@ccs.neu.edu * Northeastern University * */ package edu.neu.ccs.aspects.map; public class MappingException extends Exception { public MappingException(){ super(); } public MappingException(String msg){ super(msg); } }