Mercurial > hg > tema
view src/kryshen/tema/TemplateException.java @ 0:1d2fe61a3a62 release_0_1
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 wrap: on
line source
/* * Copyright (C) 2006 Mikhail A. Kryshen * * $Id: TemplateException.java,v 1.1.1.1 2006/05/16 14:04:09 mikhail Exp $ */ package kryshen.tema; /** * Signals that template parsing fails. * * @author Mikhail A. Kryshen */ public class TemplateException extends Exception { // TODO: store the number of template line with error. public TemplateException(String message) { super(message); } public TemplateException(String message, Throwable cause) { super(message, cause); } }