001 package org.hackystat.telemetry.analyzer.language; 002 003 /** 004 * Telemetry language exception. 005 * 006 * @author (Cedric) Qin ZHANG 007 * @version $Id$ 008 */ 009 public class TelemetryLanguageException extends Exception { 010 011 /** 012 * Serial version id. 013 */ 014 private static final long serialVersionUID = 1L; 015 016 /** 017 * Constructs this instance with an exception message. 018 * 019 * @param message The exception message. 020 */ 021 public TelemetryLanguageException(String message) { 022 super(message); 023 } 024 025 /** 026 * Constructs this instance with a wrapped exception. 027 * 028 * @param throwable The wrapped exception. 029 */ 030 public TelemetryLanguageException(Throwable throwable) { 031 super(throwable); 032 } 033 }