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