1 /*
2 * @(#)$Id: FeatureException.java 689 2009-07-22 00:10:27Z bsigner $
3 *
4 * Author : Ueli Kurmann, igesture@uelikurmann.ch
5 *
6 * Purpose : Feature exception that is thrown if there is a problem
7 * computing a feature.
8 *
9 * -----------------------------------------------------------------------
10 *
11 * Revision Information:
12 *
13 * Date Who Reason
14 *
15 * May 5, 2007 ukurmann Initial Release
16 *
17 * $Id: FeatureException.java 689 2009-07-22 00:10:27Z bsigner $
18 *
19 * -----------------------------------------------------------------------
20 *
21 * Copyright 1999-2009 ETH Zurich. All Rights Reserved.
22 *
23 * This software is the proprietary information of ETH Zurich.
24 * Use is subject to license terms.
25 *
26 */
27
28
29 package org.ximtec.igesture.algorithm.feature;
30
31 /**
32 * Feature exception that is thrown if there is a problem computing a feature.
33 *
34 * @version 1.0 May 2007
35 * @author Ueli Kurmann, igesture@uelikurmann.ch
36 * @author Beat Signer, signer@inf.ethz.ch
37 */
38 public class FeatureException extends Exception {
39
40 public static final String NOT_ENOUGH_POINTS = "Not enough points";
41
42
43 public FeatureException(String message) {
44 super(message);
45 }
46
47 }