1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 /*
24  * a simple exception
25  * just to seperate
26  * it from other
27  * exceptions
28  */
29 package com.sun.star.tooling.converter;
30 
31 /**
32  * @author Christian Schmidt
33  *
34  * Thrown if an error occurs during converting from one file format to another
35  * that does not belong to an other exception
36  */
37 public class ConverterException extends Exception {
38 
39     /**
40      *
41      */
ConverterException()42     public ConverterException() {
43         super();
44 
45     }
46 
47     /**
48      * @param arg0
49      */
ConverterException(String arg0)50     public ConverterException(String arg0) {
51         super(arg0);
52 
53     }
54 
55     /**
56      * @param arg0
57      */
ConverterException(Throwable arg0)58     public ConverterException(Throwable arg0) {
59         super(arg0);
60 
61     }
62 
63     /**
64      * @param arg0
65      * @param arg1
66      */
ConverterException(String arg0, Throwable arg1)67     public ConverterException(String arg0, Throwable arg1) {
68         super(arg0, arg1);
69 
70     }
71 
72 }