1 /*
2 * $Id$
3 *
4 * Created on 1 Feb 2010 by Paul Harrison (paul.harrison@manchester.ac.uk)
5 * Copyright 2010 Paul Harrison. All rights reserved.
6 *
7 * This software is published under the terms of the
8 * software license which has been included
9 * with this distribution in the LICENSE.txt file.
10 *
11 */
12
13 package org.jastronomy.jsofa;
14
15 /**
16 * Various forms of illegal parameters are reported with this execption.
17 * .
18 * @author Paul Harrison (paul.harrison@manchester.ac.uk) 21 Nov 2011
19 * @version $Revision$ $date$
20 */
21 public class JSOFAIllegalParameter extends JSOFAException {
22
23 /** Comment for <code>serialVersionUID</code>
24 */
25 private static final long serialVersionUID = 4164536110692125140L;
26
27 public JSOFAIllegalParameter(String message, int status) {
28 super(message, status);
29 }
30
31 }
32
33
34 /*
35 * $Log$
36 */