Rev | Line | |
---|
[13350] | 1 | /*
|
---|
| 2 | * XZFormatException
|
---|
| 3 | *
|
---|
| 4 | * Author: Lasse Collin <lasse.collin@tukaani.org>
|
---|
| 5 | *
|
---|
| 6 | * This file has been put into the public domain.
|
---|
| 7 | * You can do whatever you want with this file.
|
---|
| 8 | */
|
---|
| 9 |
|
---|
| 10 | package org.tukaani.xz;
|
---|
| 11 |
|
---|
| 12 | /**
|
---|
| 13 | * Thrown when the input data is not in the XZ format.
|
---|
| 14 | */
|
---|
| 15 | public class XZFormatException extends XZIOException {
|
---|
| 16 | private static final long serialVersionUID = 3L;
|
---|
| 17 |
|
---|
| 18 | /**
|
---|
| 19 | * Creates a new exception with the default error detail message.
|
---|
| 20 | */
|
---|
| 21 | public XZFormatException() {
|
---|
| 22 | super("Input is not in the XZ format");
|
---|
| 23 | }
|
---|
| 24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.