| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| GUIDFormatException |
|
| 1.0;1 |
| 1 | package org.jaudiotagger.audio.asf.data; | |
| 2 | ||
| 3 | /** | |
| 4 | * This exception is used when a string was about to be interpreted as a GUID, | |
| 5 | * but did not match the format.<br> | |
| 6 | * | |
| 7 | * @author Christian Laireiter | |
| 8 | */ | |
| 9 | public class GUIDFormatException extends IllegalArgumentException { | |
| 10 | ||
| 11 | /** | |
| 12 | * | |
| 13 | */ | |
| 14 | private static final long serialVersionUID = 6035645678612384953L; | |
| 15 | ||
| 16 | /** | |
| 17 | * Creates an instance. | |
| 18 | * @param detail detail message. | |
| 19 | */ | |
| 20 | public GUIDFormatException(final String detail) { | |
| 21 | 8 | super(detail); |
| 22 | 8 | } |
| 23 | } |