• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.testng.internal.annotations;
2 
3 import org.testng.annotations.IExpectedExceptionsAnnotation;
4 
5 /**
6  * An implementation of IExpectedExceptions
7  *
8  * Created on Dec 20, 2005
9  * @author <a href="mailto:cedric@beust.com">Cedric Beust</a>
10  */
11 public class ExpectedExceptionsAnnotation
12   extends BaseAnnotation
13   implements IExpectedExceptionsAnnotation
14 {
15   private Class[] m_value = {};
16 
17   @Override
getValue()18   public Class[] getValue() {
19     return m_value;
20   }
21 
setValue(Class[] value)22   public void setValue(Class[] value) {
23     m_value = value;
24   }
25 }
26