view src/kryshen/tema/TemplateException.java @ 0:1d2fe61a3a62

Tema 0.1 (imported from CVS).
author Mikhail Kryshen <mikhail@kryshen.net>
date Tue, 16 May 2006 18:04:09 +0400
parents
children 548a93c24e55
line source
1 /*
2 * Copyright (C) 2006 Mikhail A. Kryshen
3 *
4 * $Id: TemplateException.java,v 1.1.1.1 2006/05/16 14:04:09 mikhail Exp $
5 */
7 package kryshen.tema;
9 /**
10 * Signals that template parsing fails.
11 *
12 * @author Mikhail A. Kryshen
13 */
14 public class TemplateException extends Exception {
15 // TODO: store the number of template line with error.
17 public TemplateException(String message) {
18 super(message);
19 }
21 public TemplateException(String message, Throwable cause) {
22 super(message, cause);
23 }
24 }