1 package org.lcsim.material;
2
3 /**
4 *
5 * @author jeremym
6 * @version $Id: MaterialNotFoundException.java,v 1.3 2011/03/11 19:22:20 jeremy Exp $
7 */
8 public final class MaterialNotFoundException extends Exception
9 {
10 MaterialNotFoundException(String materialName)
11 {
12 super("Material was not found: " + materialName);
13 }
14 }