1*d127360fSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*d127360fSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*d127360fSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*d127360fSAndrew Rist  * distributed with this work for additional information
6*d127360fSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*d127360fSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*d127360fSAndrew Rist  * "License"); you may not use this file except in compliance
9*d127360fSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*d127360fSAndrew Rist  *
11*d127360fSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*d127360fSAndrew Rist  *
13*d127360fSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*d127360fSAndrew Rist  * software distributed under the License is distributed on an
15*d127360fSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*d127360fSAndrew Rist  * KIND, either express or implied.  See the License for the
17*d127360fSAndrew Rist  * specific language governing permissions and limitations
18*d127360fSAndrew Rist  * under the License.
19*d127360fSAndrew Rist  *
20*d127360fSAndrew Rist  *************************************************************/
21*d127360fSAndrew Rist 
22*d127360fSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir package com.sun.star.filter.config.tools.utils;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir //_______________________________________________
27cdf0e10cSrcweir // imports
28cdf0e10cSrcweir 
29cdf0e10cSrcweir import java.lang.*;
30cdf0e10cSrcweir 
31cdf0e10cSrcweir //___________________________________________
32cdf0e10cSrcweir // types
33cdf0e10cSrcweir 
34cdf0e10cSrcweir /** indicates a malformed command line.
35cdf0e10cSrcweir  *
36cdf0e10cSrcweir  *  E.g. it must be thrown if the command line contains one item more then once,
37cdf0e10cSrcweir  *  or use unsupported format.
38cdf0e10cSrcweir  */
39cdf0e10cSrcweir public class MalformedCommandLineException extends java.lang.Exception
40cdf0e10cSrcweir {
MalformedCommandLineException()41cdf0e10cSrcweir     public MalformedCommandLineException() {}
MalformedCommandLineException(java.lang.String sMsg)42cdf0e10cSrcweir     public MalformedCommandLineException(java.lang.String sMsg) { super(sMsg); }
43cdf0e10cSrcweir }
44