< prev index next >

jdk/src/java.logging/share/classes/java/util/logging/FileHandler.java

Print this page

        

*** 421,431 **** * @exception SecurityException if a security manager exists and if * the caller does not have {@code LoggingPermission("control")}. * @exception IllegalArgumentException if {@code limit < 0}, or {@code count < 1}. * @exception IllegalArgumentException if pattern is an empty string * ! * @since 1.9 * */ public FileHandler(String pattern, long limit, int count, boolean append) throws IOException { if (limit < 0 || count < 1 || pattern.length() < 1) { --- 421,431 ---- * @exception SecurityException if a security manager exists and if * the caller does not have {@code LoggingPermission("control")}. * @exception IllegalArgumentException if {@code limit < 0}, or {@code count < 1}. * @exception IllegalArgumentException if pattern is an empty string * ! * @since 9 * */ public FileHandler(String pattern, long limit, int count, boolean append) throws IOException { if (limit < 0 || count < 1 || pattern.length() < 1) {
< prev index next >