| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| NullBoxIdException |
|
| 1.0;1 |
| 1 | package org.jaudiotagger.audio.exceptions; | |
| 2 | ||
| 3 | /** | |
| 4 | * Thrown if when trying to read box id just finds nulls | |
| 5 | * Normally an error, but if occurs at end of file we allow it | |
| 6 | */ | |
| 7 | public class NullBoxIdException extends RuntimeException | |
| 8 | { | |
| 9 | public NullBoxIdException(String message) | |
| 10 | { | |
| 11 | 79 | super(message); |
| 12 | 79 | } |
| 13 | } |