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  * Exception for errors in
25  * SDFLines
26  */
27 package com.sun.star.tooling.converter;
28 
29 
30 /**
31  * This Exeption is thrown if a DataReader finds an error in a read Line
32  * f. e. wrong column number
33  *
34  * @author Christian Schmidt 2005
35  *
36  */
37 public class LineErrorException extends Exception {
38 
39      public int tokenCount;
40     /**
41      *
42      */
LineErrorException()43     public LineErrorException() {
44         super();
45 
46     }
47 
48     /**
49      * @param arg0
50      */
LineErrorException(String arg0)51     public LineErrorException(String arg0) {
52         super(arg0);
53 
54     }
55 
56     /**
57      * @param arg0
58      */
LineErrorException(Throwable arg0)59     public LineErrorException(Throwable arg0) {
60         super(arg0);
61 
62     }
63 
64     /**
65      * @param arg0
66      * @param arg1
67      */
LineErrorException(String arg0, Throwable arg1)68     public LineErrorException(String arg0, Throwable arg1) {
69         super(arg0, arg1);
70 
71     }
72 
73 
74 }