1 /* 2 * Created on 24 Mar 2009 3 * 4 */ 5 package org.sourceforge.jemm.database; 6 7 8 /** 9 * @author Rory Graves 10 * 11 */ 12 public class StructureModifiedException extends Exception { 13 14 private static final long serialVersionUID = 1L; 15 16 public StructureModifiedException(String message) { 17 super(message); 18 } 19 }