All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.jstuff.integration.ldap.LdapException Maven / Gradle / Ivy

/*
 * Copyright 2010-2022 by Sebastian Thomschke and contributors.
 * SPDX-License-Identifier: EPL-2.0
 */
package net.sf.jstuff.integration.ldap;

import org.eclipse.jdt.annotation.Nullable;

/**
 * @author Sebastian Thomschke
 */
public class LdapException extends RuntimeException {
   private static final long serialVersionUID = 1L;

   public LdapException(final @Nullable Throwable cause) {
      super(cause);
   }

   public LdapException(final @Nullable String message, final @Nullable Throwable cause) {
      super(message, cause);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy