1 /*
2  * UnsupportedOptionsException
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 compression options not supported by this implementation
14  * are detected. Some other implementation might support those options.
15  */
16 public class UnsupportedOptionsException extends XZIOException {
17     private static final long serialVersionUID = 3L;
18 
19     /**
20      * Creates a new UnsupportedOptionsException with null
21      * as its error detail message.
22      */
UnsupportedOptionsException()23     public UnsupportedOptionsException() {}
24 
25     /**
26      * Creates a new UnsupportedOptionsException with the given
27      * error detail message.
28      *
29      * @param       s           error detail message
30      */
UnsupportedOptionsException(String s)31     public UnsupportedOptionsException(String s) {
32         super(s);
33     }
34 }
35