Source code: com/fm/transform/fmTransformException.java
1 /****************************************************************************
2 * Copyright (c) 2003 Andrew Duka | aduka@users.sourceforge.net
3 * All right reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 ****************************************************************************/
11 package com.fm.transform;
12
13 import java.lang.Exception;
14
15 /**
16 * RSS channel transformation exception.
17 *
18 * <p>Entities should be thrown if any error occures during transformation
19 * of the RSS channel data.</p>
20 *
21 * @author Andrew Duka (Andrew.Duka@oktet.ru)
22 */
23 public class fmTransformException extends Exception
24 {
25 /**
26 * Constructor
27 *
28 * @param msg detail message
29 */
30 public fmTransformException(String msg)
31 {
32 super(msg);
33 }
34
35 /**
36 * Constructor
37 *
38 * @param msg detail message
39 * @param c exception cause
40 */
41 public fmTransformException(String msg, Throwable c)
42 {
43 super(msg,c);
44 }
45
46 /**
47 * Constructor
48 *
49 * @param c exception cause
50 */
51 public fmTransformException(Throwable c)
52 {
53 super(c);
54 }
55 }
56
57