| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| EmptyFrameException |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * @author : Paul Taylor | |
| 3 | * @author : Eric Farng | |
| 4 | * | |
| 5 | * Version @version:$Id: EmptyFrameException.java,v 1.4 2008/01/01 15:14:25 paultaylor Exp $ | |
| 6 | * | |
| 7 | * MusicTag Copyright (C)2003,2004 | |
| 8 | * | |
| 9 | * This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser | |
| 10 | * General Public License as published by the Free Software Foundation; either version 2.1 of the License, | |
| 11 | * or (at your option) any later version. | |
| 12 | * | |
| 13 | * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even | |
| 14 | * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
| 15 | * See the GNU Lesser General Public License for more details. | |
| 16 | * | |
| 17 | * You should have received a copy of the GNU Lesser General Public License along with this library; if not, | |
| 18 | * you can get a copy from http://www.opensource.org/licenses/lgpl-license.php or write to the Free Software | |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 20 | * | |
| 21 | */ | |
| 22 | package org.jaudiotagger.tag; | |
| 23 | ||
| 24 | /** | |
| 25 | * Thrown when find a Frame but it contains no data. | |
| 26 | * | |
| 27 | * @version $Revision: 1.4 $ | |
| 28 | */ | |
| 29 | public class EmptyFrameException extends InvalidFrameException | |
| 30 | { | |
| 31 | /** | |
| 32 | * Creates a new EmptyFrameException datatype. | |
| 33 | */ | |
| 34 | public EmptyFrameException() | |
| 35 | 0 | { |
| 36 | 0 | } |
| 37 | ||
| 38 | /** | |
| 39 | * Creates a new EmptyFrameException datatype. | |
| 40 | * | |
| 41 | * @param ex the cause. | |
| 42 | */ | |
| 43 | public EmptyFrameException(Throwable ex) | |
| 44 | { | |
| 45 | 0 | super(ex); |
| 46 | 0 | } |
| 47 | ||
| 48 | /** | |
| 49 | * Creates a new EmptyFrameException datatype. | |
| 50 | * | |
| 51 | * @param msg the detail message. | |
| 52 | */ | |
| 53 | public EmptyFrameException(String msg) | |
| 54 | { | |
| 55 | 3 | super(msg); |
| 56 | 3 | } |
| 57 | ||
| 58 | /** | |
| 59 | * Creates a new EmptyFrameException datatype. | |
| 60 | * | |
| 61 | * @param msg the detail message. | |
| 62 | * @param ex the cause. | |
| 63 | */ | |
| 64 | public EmptyFrameException(String msg, Throwable ex) | |
| 65 | { | |
| 66 | 0 | super(msg, ex); |
| 67 | 0 | } |
| 68 | } |