1 17 18 19 20 package org.apache.fop.fo; 21 22 import org.apache.fop.apps.FOPException; 23 import org.xml.sax.Locator ; 24 25 28 public class ValidationException extends FOPException { 29 public ValidationException(String message) { 30 super(message); 31 } 32 33 public ValidationException(String message, Locator locator) { 34 super(message, locator); 35 } 36 } 37 | Popular Tags |