| | |
| | | * |
| | | * |
| | | * Copyright 2008 Sun Microsystems, Inc. |
| | | * Portions Copyright 2013 ForgeRock AS. |
| | | * Portions Copyright 2013-2015 ForgeRock AS. |
| | | */ |
| | | |
| | | package org.opends.admin.ads; |
| | |
| | | */ |
| | | public TopologyCacheException(ADSContextException ace) |
| | | { |
| | | super(ace); |
| | | type = Type.GENERIC_READING_ADS; |
| | | initCause(ace); |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | public TopologyCacheException(Type type, Throwable t) |
| | | { |
| | | super(t); |
| | | this.type = type; |
| | | initCause(t); |
| | | } |
| | | |
| | | /** |
| | |
| | | public TopologyCacheException(Type type, NamingException ne, |
| | | ApplicationTrustManager trustManager, String ldapUrl) |
| | | { |
| | | super(ne); |
| | | this.type = type; |
| | | initCause(ne); |
| | | this.ldapUrl = ldapUrl; |
| | | this.trustManager = trustManager; |
| | | } |