1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package eteg.sinon.exception;
24
25 import eteg.sinon.core.Collector;
26
27 /***
28 * Exceção levantada por {@link eteg.sinon.executor.ThinkTime#setConfiguration}
29 * quando as configurações passadas são inválidas ou insuficientes.
30 *
31 * <pre>
32 * $Header: /cvsroot/sinon/sinon/src/java/eteg/sinon/exception/InvalidThinkTimeConfigurationException.java,v 1.2 2005/06/21 14:25:08 thiagohp Exp $
33 * </pre>
34 *
35 * @since 07/09/2004.
36 * @author Thiago H. de Paula Figueiredo (last modification by $Author: thiagohp $)
37 * @version $Revision: 1.2 $
38 */
39 public class InvalidThinkTimeConfigurationException extends SinonException {
40
41 /***
42 * Construtor que recebe uma mensagem e um {@link Collector}.
43 * @param message uma <code>String</code> descrevendo o erro.
44 */
45 public InvalidThinkTimeConfigurationException(String message) {
46
47 super(message);
48
49 }
50 }