summaryrefslogtreecommitdiff
path: root/src/com/memberwebs/ldapxml/LXException.java
blob: 242e0812569f3c4cd6234662c2b0ee36ed752df2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.memberwebs.ldapxml;

import com.familymembers.util.*;

/**
 * Thrown when an error occurs during LX retrieval or
 * processing.
 *
 * @author nielsen@memberwebs.com
 * @version 1.0
 */
public class LXException
        extends WrappedException
{
    /**
     * Creates a new LXException object.
     *
     * @param message Error message.
     */
    public LXException(String message)
    {
        super(message, null);
    }

    /**
     * Creates a new LXException object wrapping a current Exception.
     *
     * @param e The exception.
     */
    public LXException(Exception e)
    {
        super(null, e);
    }
}