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); } }