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

org.jboss.as.arquillian.container.ExceptionTransformer Maven / Gradle / Ivy

There is a newer version: 5.1.0.Beta6
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package org.jboss.as.arquillian.container;

import org.jboss.arquillian.container.spi.client.container.DeploymentExceptionTransformer;

/**
 *
 * @author Andrew Lee Rubinger
 */
public class ExceptionTransformer implements DeploymentExceptionTransformer {

    @Override
    public Throwable transform(final Throwable exception) {
        // NOOP Base impl
        return exception;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy