quoridor/src/main/java/cz/xelfi/quoridor/IllegalPositionException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 14 Sep 2010 08:56:13 +0200
changeset 264 d60370059c3c
parent 8 d646ee3ce41b
permissions -rw-r--r--
Changing headers to GPLv3
jtulach@0
     1
/*
jaroslav@264
     2
 * Quoridor server and related libraries
jaroslav@264
     3
 * Copyright (C) 2009-2010 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@8
     4
 *
jaroslav@264
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@264
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@264
     7
 * the Free Software Foundation, either version 3 of the License.
jtulach@8
     8
 *
jaroslav@264
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@264
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@264
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@264
    12
 * GNU General Public License for more details.
jtulach@8
    13
 *
jaroslav@264
    14
 * You should have received a copy of the GNU General Public License
jaroslav@264
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@264
    16
 * If not, see http://www.gnu.org/licenses/.
jtulach@0
    17
 */
jtulach@0
    18
jtulach@0
    19
package cz.xelfi.quoridor;
jtulach@0
    20
jtulach@0
    21
/** Thrown when an illegal position is reached.
jtulach@0
    22
 *
jtulach@0
    23
 * @author Jaroslav Tulach
jtulach@0
    24
 */
jtulach@0
    25
public final class IllegalPositionException extends java.lang.Exception {
jtulach@0
    26
    /**
jtulach@0
    27
     * @param msg the detail message.
jtulach@0
    28
     */
jtulach@0
    29
    IllegalPositionException (String msg) {
jtulach@0
    30
        super (msg);
jtulach@0
    31
    }
jtulach@0
    32
}