001 package org.hackystat.projectbrowser.page.trajectory.dtw; 002 003 /** 004 * The DTW package-specific exception. 005 * 006 * @author Pavel Senin. 007 * 008 */ 009 public class DTWException extends Exception { 010 011 /** 012 * Serial. 013 */ 014 private static final long serialVersionUID = 4451593638376379131L; 015 016 /** 017 * Constructor. 018 * 019 * @param description The problem description. 020 */ 021 public DTWException(String description) { 022 super(description); 023 } 024 025 }