1 package org.openphacts.nextprot;
2
3 /**
4 * <code>TemplateException</code> signals exceptional states while processing
5 * templates
6 *
7 * Created: Mon Jun 4 21:22:18 2012
8 *
9 * @author <a href="mailto:Oliver.Karch@merckgroup.com"></a>
10 * @version 0.1
11 */
12
13 public class TemplateException extends Exception {
14
15 public TemplateException( String msg ) {
16 super( msg );
17 }
18
19 }