org.quartz.xml.XMLSchedulingDataProcessor.addValidationException()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(2.4k)|赞(0)|评价(0)|浏览(95)

本文整理了Java中org.quartz.xml.XMLSchedulingDataProcessor.addValidationException()方法的一些代码示例,展示了XMLSchedulingDataProcessor.addValidationException()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLSchedulingDataProcessor.addValidationException()方法的具体详情如下:
包路径:org.quartz.xml.XMLSchedulingDataProcessor
类名称:XMLSchedulingDataProcessor
方法名:addValidationException

XMLSchedulingDataProcessor.addValidationException介绍

[英]Adds a detected validation exception.
[中]添加检测到的验证异常。

代码示例

代码示例来源:origin: quartz-scheduler/quartz

/**
 * ErrorHandler interface.
 * 
 * Receive notification of a recoverable error.
 * 
 * @param e
 *          The error information encapsulated in a SAX parse exception.
 * @exception SAXException
 *              Any SAX exception, possibly wrapping another exception.
 */
public void error(SAXParseException e) throws SAXException {
  addValidationException(e);
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * ErrorHandler interface.
 * 
 * Receive notification of a non-recoverable error.
 * 
 * @param e
 *          The error information encapsulated in a SAX parse exception.
 * @exception SAXException
 *              Any SAX exception, possibly wrapping another exception.
 */
public void fatalError(SAXParseException e) throws SAXException {
  addValidationException(e);
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * ErrorHandler interface.
 * 
 * Receive notification of a warning.
 * 
 * @param e
 *          The error information encapsulated in a SAX parse exception.
 * @exception SAXException
 *              Any SAX exception, possibly wrapping another exception.
 */
public void warning(SAXParseException e) throws SAXException {
  addValidationException(e);
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * ErrorHandler interface.
 * 
 * Receive notification of a warning.
 * 
 * @param e
 *          The error information encapsulated in a SAX parse exception.
 * @exception SAXException
 *              Any SAX exception, possibly wrapping another exception.
 */
public void warning(SAXParseException e) throws SAXException {
  addValidationException(e);
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * ErrorHandler interface.
 * 
 * Receive notification of a recoverable error.
 * 
 * @param e
 *          The error information encapsulated in a SAX parse exception.
 * @exception SAXException
 *              Any SAX exception, possibly wrapping another exception.
 */
public void error(SAXParseException e) throws SAXException {
  addValidationException(e);
}

代码示例来源:origin: quartz-scheduler/quartz

/**
 * ErrorHandler interface.
 * 
 * Receive notification of a non-recoverable error.
 * 
 * @param e
 *          The error information encapsulated in a SAX parse exception.
 * @exception SAXException
 *              Any SAX exception, possibly wrapping another exception.
 */
public void fatalError(SAXParseException e) throws SAXException {
  addValidationException(e);
}

相关文章