blob: bff075d1e4d0b144fcc9bfdd0972c6941b4b64f2 [file] [log] [blame]
package org.testng.internal.annotations;
import org.testng.annotations.IExpectedExceptionsAnnotation;
/**
* An implementation of IExpectedExceptions
*
* Created on Dec 20, 2005
* @author <a href="mailto:cedric@beust.com">Cedric Beust</a>
*/
public class ExpectedExceptionsAnnotation
extends BaseAnnotation
implements IExpectedExceptionsAnnotation
{
private Class[] m_value = {};
public Class[] getValue() {
return m_value;
}
public void setValue(Class[] value) {
m_value = value;
}
}