001 package org.hackystat.tickertape.tickerlingua; 002 003 /** 004 * The exception class for all TickerLingua definition errors. 005 * @author Philip Johnson 006 * 007 */ 008 public class TickerLinguaException extends Exception { 009 010 /** Serial version id. */ 011 private static final long serialVersionUID = 1L; 012 013 /** 014 * Constructs this instance with an exception message. 015 * 016 * @param message The exception message. 017 */ 018 public TickerLinguaException(String message) { 019 super(message); 020 } 021 022 /** 023 * Constructs this instance with a wrapped exception. 024 * @param message The message. 025 * @param throwable The wrapped exception. 026 */ 027 public TickerLinguaException(String message, Throwable throwable) { 028 super(message, throwable); 029 } 030 }