blob: 6610ce9878e8d0a34d2366c9d3b09e64ab744a96 [file] [log] [blame]
package org.testng.internal.annotations;
/**
* Encapsulate the @ExpectedExceptions / @testng.expected-exceptions annotation
* Created on Dec 20, 2005
* @author <a href="mailto:cedric@beust.com">Cedric Beust</a>
*/
public interface IExpectedExceptions extends IAnnotation {
/**
* The list of exceptions expected to be thrown by this method.
*/
public Class[] getValue();
}