|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| LatexListDataException.java | - | 50% | 50% | 50% |
|
||||||||||||||
| 1 | /* $Id: LatexListDataException.java,v 1.1 2007/03/11 01:19:34 m31 Exp $ | |
| 2 | * | |
| 3 | * This file is part of the project "Hilbert II" - http://www.qedeq.org | |
| 4 | * | |
| 5 | * Copyright 2000-2007, Michael Meyling <mime@qedeq.org>. | |
| 6 | * | |
| 7 | * "Hilbert II" is free software; you can redistribute | |
| 8 | * it and/or modify it under the terms of the GNU General Public | |
| 9 | * License as published by the Free Software Foundation; either | |
| 10 | * version 2 of the License, or (at your option) any later version. | |
| 11 | * | |
| 12 | * This program is distributed in the hope that it will be useful, | |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 | * GNU General Public License for more details. | |
| 16 | */ | |
| 17 | ||
| 18 | package org.qedeq.kernel.bo.control; | |
| 19 | ||
| 20 | import org.qedeq.kernel.bo.module.ModuleDataException; | |
| 21 | import org.qedeq.kernel.context.ModuleContext; | |
| 22 | ||
| 23 | ||
| 24 | /** | |
| 25 | * Data validation error for an {@link org.qedeq.kernel.base.module.LatexList} element of a | |
| 26 | * QEDEQ module. | |
| 27 | * | |
| 28 | * @version $Revision: 1.1 $ | |
| 29 | * @author Michael Meyling | |
| 30 | */ | |
| 31 | public class LatexListDataException extends ModuleDataException { | |
| 32 | ||
| 33 | /** | |
| 34 | * Constructor. | |
| 35 | * | |
| 36 | * @param errorCode Error code of this message. | |
| 37 | * @param message Error message. | |
| 38 | * @param context Error location. | |
| 39 | */ | |
| 40 | 0 | public LatexListDataException(final int errorCode, final String message, |
| 41 | final ModuleContext context) { | |
| 42 | 0 | super(errorCode, message, context); |
| 43 | } | |
| 44 | ||
| 45 | /** | |
| 46 | * Constructor. | |
| 47 | * | |
| 48 | * @param errorCode Error code of this message. | |
| 49 | * @param message Error message. | |
| 50 | * @param context Error location. | |
| 51 | * @param reference Reference location. | |
| 52 | */ | |
| 53 | 1 | public LatexListDataException(final int errorCode, final String message, |
| 54 | final ModuleContext context, final ModuleContext reference) { | |
| 55 | 1 | super(errorCode, message, context, reference); |
| 56 | } | |
| 57 | ||
| 58 | } |
|
||||||||||