1 /** 2 * LOGBack: the generic, reliable, fast and flexible logging framework. 3 * 4 * Copyright (C) 1999-2006, QOS.ch 5 * 6 * This library is free software, you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public License as 8 * published by the Free Software Foundation. 9 */ 10 package ch.qos.logback.core.joran.spi; 11 12 import java.net.URL; 13 14 import ch.qos.logback.core.status.StatusManager; 15 16 public class XMLUtil { 17 18 19 static public final int ILL_FORMED = 1; 20 static public final int UNRECOVERABLE_ERROR = 2; 21 22 static public int checkIfWellFormed(URL url, StatusManager sm) { 23 return 0; 24 } 25 26 }