Skip to content

Commit

Permalink
Fix javadoc errors in JobExecutionProcessException
Browse files Browse the repository at this point in the history
Signed-off-by: James House <jhouse@revolition.net>
  • Loading branch information
jhouserizer committed Nov 12, 2024
1 parent cbe23a1 commit a7393a3
Showing 1 changed file with 9 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,15 @@
import org.quartz.TriggerListener;

/**
* <p>
* This exception is meybe thrown when an error occurs during execution:
* <ul>
* <li><code>Job execution</code></li>
* <li><code>{@link JobListener} methods</code></li>
* <li><code>{@link TriggerListener} methods</code></li>
* </ul>
* The exception ensures that the job execution context is transferred to the implementation of the error
* handling method of the scheduler listener <code>{@link SchedulerListener#schedulerError()}</code>, to try to fix
* the problem
* </p>
* This exception is thrown when an error occurs during execution:
* <ul>
* <li><code>Job execution</code></li>
* <li><code>{@link JobListener} methods</code></li>
* <li><code>{@link TriggerListener} methods</code></li>
* </ul>
* The exception ensures that the job execution context is transferred to the implementation of the error
* handling method of the scheduler listener <code>{@link org.quartz.SchedulerListener#schedulerError(String, SchedulerException)}</code>,
* to try to fix the problem
*/
public class JobExecutionProcessException extends SchedulerException
{
Expand Down

0 comments on commit a7393a3

Please sign in to comment.