Java Code Examples for org.apache.commons.math.exception.util.LocalizedFormats#CONVERGENCE_FAILED

The following examples show how to use org.apache.commons.math.exception.util.LocalizedFormats#CONVERGENCE_FAILED . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ConvergenceException.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Construct the exception with a specific context and arguments.
 *
 * @param specific Specific contexte pattern.
 * @param args Arguments.
 */
public ConvergenceException(Localizable specific,
                            Object ... args) {
    super(specific,
          LocalizedFormats.CONVERGENCE_FAILED,
          args);
}
 
Example 2
Source File: ConvergenceException.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Construct the exception with a specific context and arguments.
 *
 * @param specific Specific contexte pattern.
 * @param args Arguments.
 */
public ConvergenceException(Localizable specific,
                            Object ... args) {
    super(specific,
          LocalizedFormats.CONVERGENCE_FAILED,
          args);
}
 
Example 3
Source File: ConvergenceException.java    From astor with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Construct the exception with a specific context.
 *
 * @param specific Specific contexte pattern.
 */
public ConvergenceException(Localizable specific) {
    this(specific,
         LocalizedFormats.CONVERGENCE_FAILED,
         null);
}
 
Example 4
Source File: ConvergenceException.java    From astor with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Default constructor.
 */
public ConvergenceException() {
    super(LocalizedFormats.CONVERGENCE_FAILED);
}
 
Example 5
Source File: ConvergenceException.java    From astor with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Construct the exception with a specific context.
 *
 * @param specific Specific contexte pattern.
 */
public ConvergenceException(Localizable specific) {
    this(specific,
         LocalizedFormats.CONVERGENCE_FAILED,
         null);
}
 
Example 6
Source File: ConvergenceException.java    From astor with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Default constructor.
 */
public ConvergenceException() {
    super(LocalizedFormats.CONVERGENCE_FAILED);
}
 
Example 7
Source File: ConvergenceException.java    From astor with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Construct the exception.
 */
public ConvergenceException() {
    this(LocalizedFormats.CONVERGENCE_FAILED);
}
 
Example 8
Source File: ConvergenceException.java    From astor with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Default constructor.
 */
public ConvergenceException() {
    super(LocalizedFormats.CONVERGENCE_FAILED);
}
 
Example 9
Source File: ConvergenceException.java    From astor with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Construct the exception.
 */
public ConvergenceException() {
    this(LocalizedFormats.CONVERGENCE_FAILED);
}
 
Example 10
Source File: ConvergenceException.java    From astor with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Default constructor.
 */
public ConvergenceException() {
    super(LocalizedFormats.CONVERGENCE_FAILED);
}