All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.geneea.celery.examples.BadTask Maven / Gradle / Ivy

package com.geneea.celery.examples;

import com.geneea.celery.CeleryTask;

/**
 * Task that always throws exception.
 */
@CeleryTask
public class BadTask {

    public void throwCheckedException() throws Exception {
        throw new Exception();
    }

    public void throwUncheckedException() {
        throw new RuntimeException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy