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

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

本文整理了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

  1. /**
  2. * ErrorHandler interface.
  3. *
  4. * Receive notification of a recoverable error.
  5. *
  6. * @param e
  7. * The error information encapsulated in a SAX parse exception.
  8. * @exception SAXException
  9. * Any SAX exception, possibly wrapping another exception.
  10. */
  11. public void error(SAXParseException e) throws SAXException {
  12. addValidationException(e);
  13. }

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

  1. /**
  2. * ErrorHandler interface.
  3. *
  4. * Receive notification of a non-recoverable error.
  5. *
  6. * @param e
  7. * The error information encapsulated in a SAX parse exception.
  8. * @exception SAXException
  9. * Any SAX exception, possibly wrapping another exception.
  10. */
  11. public void fatalError(SAXParseException e) throws SAXException {
  12. addValidationException(e);
  13. }

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

  1. /**
  2. * ErrorHandler interface.
  3. *
  4. * Receive notification of a warning.
  5. *
  6. * @param e
  7. * The error information encapsulated in a SAX parse exception.
  8. * @exception SAXException
  9. * Any SAX exception, possibly wrapping another exception.
  10. */
  11. public void warning(SAXParseException e) throws SAXException {
  12. addValidationException(e);
  13. }

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

  1. /**
  2. * ErrorHandler interface.
  3. *
  4. * Receive notification of a warning.
  5. *
  6. * @param e
  7. * The error information encapsulated in a SAX parse exception.
  8. * @exception SAXException
  9. * Any SAX exception, possibly wrapping another exception.
  10. */
  11. public void warning(SAXParseException e) throws SAXException {
  12. addValidationException(e);
  13. }

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

  1. /**
  2. * ErrorHandler interface.
  3. *
  4. * Receive notification of a recoverable error.
  5. *
  6. * @param e
  7. * The error information encapsulated in a SAX parse exception.
  8. * @exception SAXException
  9. * Any SAX exception, possibly wrapping another exception.
  10. */
  11. public void error(SAXParseException e) throws SAXException {
  12. addValidationException(e);
  13. }

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

  1. /**
  2. * ErrorHandler interface.
  3. *
  4. * Receive notification of a non-recoverable error.
  5. *
  6. * @param e
  7. * The error information encapsulated in a SAX parse exception.
  8. * @exception SAXException
  9. * Any SAX exception, possibly wrapping another exception.
  10. */
  11. public void fatalError(SAXParseException e) throws SAXException {
  12. addValidationException(e);
  13. }

相关文章