Searched defs:ex (Results 51 - 75 of 266) sorted by relevance

1234567891011

/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/locale/
H A DL10NMessageImpl.java86 * @param ex if the exception message is instance of L10NMessage, the
89 public L10NMessageImpl(Throwable ex) { argument
90 super(ex);
91 this.message = ex.getMessage();
92 if (ex instanceof L10NMessage) {
93 L10NMessage lex = (L10NMessage) ex;
/forgerock/openam-v13/openam-shared/src/test/java/com/sun/identity/shared/debug/
H A DDebugRotationTest.java200 if (printLogRunnableTest.ex != null) throw printLogRunnableTest.ex;
237 public Exception ex = null; field in class:DebugRotationTest.PrintLogRunnable
255 this.ex = e;
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DEntitlementsExceptionMappingHandler.java222 * @param ex The EntitlementException that occurred when attempting to handle the request.
225 private EntitlementException causeOf(EntitlementException ex) { argument
227 if (ex.getErrorCode() == EntitlementException.INVALID_JSON) {
228 if (ex.getCause() instanceof JsonMappingException) {
229 if (ex.getCause().getCause() instanceof EntitlementException) {
230 EntitlementException cause = (EntitlementException) ex.getCause().getCause();
238 return ex;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/common/
H A DFSException.java235 * @param ex an exception.
238 public FSException(Exception ex) { argument
239 super(ex);
H A DFSRedirectException.java230 * @param ex Exception
233 public FSRedirectException(Exception ex) { argument
234 super(ex);
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/
H A DTableHandler.java204 * @param ex The exception thrown by the database
208 public boolean isErrorType(SQLException ex, ErrorType errorType); argument
212 * @param ex the exception thrown by the database
216 public boolean isRetryable(SQLException ex, Connection connection); argument
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/impl/
H A DDB2TableHandler.java77 public boolean isRetryable(SQLException ex, Connection connection) { argument
82 if (-911 == ex.getErrorCode() || -912 == ex.getErrorCode() || -904 == ex.getErrorCode()) {
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/factories/
H A DRhinoScriptEngine.java79 } catch (RhinoException ex) {
80 throw convertException(ex);
81 } catch (IOException ex) {
82 throw new ScriptException(ex);
107 } catch (RhinoException ex) {
108 throw convertException(ex);
179 } catch (RhinoException ex) {
180 throw convertException(ex);
181 } catch (IOException ex) {
182 throw new ScriptException(ex);
212 convertException(RhinoException ex) argument
[all...]
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/locale/
H A DL10NMessageImpl.java86 * @param ex if the exception message is instance of L10NMessage, the
89 public L10NMessageImpl(Throwable ex) { argument
90 super(ex);
91 this.message = ex.getMessage();
92 if (ex instanceof L10NMessage) {
93 L10NMessage lex = (L10NMessage) ex;
/forgerock/openam/openam-shared/src/test/java/com/sun/identity/shared/debug/
H A DDebugRotationTest.java201 if (printLogRunnableTest.ex != null) throw printLogRunnableTest.ex;
238 public Exception ex = null; field in class:DebugRotationTest.PrintLogRunnable
256 this.ex = e;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/
H A DL10NMessageImpl.java80 * @param ex if the exception message is instance of L10NMessage, the
83 public L10NMessageImpl(Throwable ex) { argument
84 this.message = ex.getMessage();
85 if (ex instanceof L10NMessage) {
86 L10NMessage lex = (L10NMessage) ex;
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/ldap/
H A DLDAPUtilException.java129 * @param ex Root cause of this exception
131 public LDAPUtilException(Throwable ex) { argument
132 this.message = ex.getMessage();
133 if (ex instanceof L10NMessage) {
134 L10NMessage lex = (L10NMessage) ex;
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DEntitlementsExceptionMappingHandler.java240 * @param ex The EntitlementException that occurred when attempting to handle the request.
243 private EntitlementException causeOf(EntitlementException ex) { argument
245 if (ex.getErrorCode() == EntitlementException.INVALID_JSON) {
246 if (ex.getCause() instanceof JsonMappingException) {
247 if (ex.getCause().getCause() instanceof EntitlementException) {
248 EntitlementException cause = (EntitlementException) ex.getCause().getCause();
256 return ex;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/common/
H A DFSException.java235 * @param ex an exception.
238 public FSException(Exception ex) { argument
239 super(ex);
H A DFSRedirectException.java230 * @param ex Exception
233 public FSRedirectException(Exception ex) { argument
234 super(ex);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/naming/share/
H A DNamingResponse.java189 * @param ex A string representing the exception.
191 public void setException(String ex) { argument
192 exception = ex;
227 } catch (NumberFormatException ex) {
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/loggers/
H A DDebugLogPublisher.java340 * @param ex The exception that was caught.
345 String sourceLocation, String msg, Throwable ex,
344 traceException(TraceSettings settings, String signature, String sourceLocation, String msg, Throwable ex, StackTraceElement[] stackTrace) argument
H A DTextDebugLogPublisher.java386 String sourceLocation, String msg, Throwable ex,
389 String message = DebugMessageFormatter.format("%s caught={%s}", new Object[] { msg, ex });
394 stack = DebugStackTraceFormatter.formatStackTrace(ex, settings.getStackDepth(),
385 traceException(TraceSettings settings, String signature, String sourceLocation, String msg, Throwable ex, StackTraceElement[] stackTrace) argument
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/naming/share/
H A DNamingResponse.java189 * @param ex A string representing the exception.
191 public void setException(String ex) { argument
192 exception = ex;
227 } catch (NumberFormatException ex) {
/forgerock/opendj2/ext/ant/lib/
H A Dant-apache-resolver.jar ... java.lang.String) java.net.MalformedURLException ex java.io.IOException ex String file org. ...
/forgerock/opendj-b2.6/ext/ant/lib/
H A Dant-apache-resolver.jar ... java.lang.String) java.net.MalformedURLException ex java.io.IOException ex String file org. ...
/forgerock/opendj2.6.2/ext/ant/lib/
H A Dant-apache-resolver.jar ... java.lang.String) java.net.MalformedURLException ex java.io.IOException ex String file org. ...
/forgerock/opendj2-hg/ext/ant/lib/
H A Dant-apache-resolver.jar ... java.lang.String) java.net.MalformedURLException ex java.io.IOException ex String file org. ...
/forgerock/opendj-v3/opendj-server-legacy/ext/ant/lib/
H A Dant-apache-resolver.jar ... java.lang.String) java.net.MalformedURLException ex java.io.IOException ex String file org. ...
/forgerock/opendj-b2.6/src/server/org/opends/server/loggers/debug/
H A DDebugTracer.java474 * @param ex The exception being thrown.
476 public void debugThrown(LogLevel level, Throwable ex) argument
542 getFilteredStackTrace(ex.getStackTrace());
546 sl, ex, filteredStackTrace);
749 * @param ex the exception caught.
751 public void debugCaught(LogLevel level, Throwable ex) argument
817 getFilteredStackTrace(ex.getStackTrace());
821 sl, ex, filteredStackTrace);

Completed in 86 milliseconds

1234567891011