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

com.thoughtworks.gauge.ContinueOnFailure Maven / Gradle / Ivy

/*----------------------------------------------------------------
 *  Copyright (c) ThoughtWorks, Inc.
 *  Licensed under the Apache License, Version 2.0
 *  See LICENSE.txt in the project root for license information.
 *----------------------------------------------------------------*/
package com.thoughtworks.gauge;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotation added to methods which are Gauge Step implementations.
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ContinueOnFailure {
    Class[] value() default Throwable.class;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy