blob: 713b2e49abff90a46e3463bdc037f41454ae169c [file] [log] [blame]
Stephane Frenot1cee87d2006-07-17 12:14:31 +00001/*
2 * Copyright (C) MX4J.
3 * All rights reserved.
4 *
5 * This software is distributed under the terms of the MX4J License version 1.0.
6 * See the terms of the MX4J License in the documentation provided with this software.
7 */
8
9/*
10 * Copyright 2005 The Apache Software Foundation
11 *
12 * Licensed under the Apache License, Version 2.0 (the "License");
13 * you may not use this file except in compliance with the License.
14 * You may obtain a copy of the License at
15 *
16 * http://www.apache.org/licenses/LICENSE-2.0
17 *
18 * Unless required by applicable law or agreed to in writing, software
19 * distributed under the License is distributed on an "AS IS" BASIS,
20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * See the License for the specific language governing permissions and
22 * limitations under the License.
23 *
24 */
25package org.apache.felix.mosgi.jmx.agent.mx4j.loading;
26/**
27 * Thrown when a problem parsing MLet files is encountered
28 *
29 * @author <a href="mailto:biorn_steedom@users.sourceforge.net">Simone Bordet</a>
30 * @version $Revision: 1.1.1.1 $
31 */
32public class MLetParseException extends Exception
33{
34 public MLetParseException()
35 {
36 }
37
38 public MLetParseException(String message)
39 {
40 super(message);
41 }
42}