api/src/main/java/org/apache/myfaces/core/api/shared/lang/ClassUtils.java [202:221]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static Class simpleClassForName(String type, boolean throwException, boolean logException)
    {
        Class returnClass = null;
        try
        {
            returnClass = classForName(type);
        }
        catch (ClassNotFoundException e)
        {
            if(logException)
            {
                log.log(Level.SEVERE, "Class " + type + " not found", e);
            }
            if (throwException)
            {
                throw new FacesException(e);
            }
        }
        return returnClass;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



impl/src/main/java/org/apache/myfaces/util/lang/ClassUtils.java [284:303]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static Class simpleClassForName(String type, boolean throwException, boolean logException)
    {
        Class returnClass = null;
        try
        {
            returnClass = classForName(type);
        }
        catch (ClassNotFoundException e)
        {
            if(logException)
            {
                log.log(Level.SEVERE, "Class " + type + " not found", e);
            }
            if (throwException)
            {
                throw new FacesException(e);
            }
        }
        return returnClass;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



