1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 | package Torello.Java;
/**
* Thrown when an attempt is made to re-use a {@link VarType} (implemented by class {@link RTC})
* which hasn't been configured to be reusable.
*/
public class VarTypeAlreadyUsedException extends RuntimeException
{
/** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */
protected static final long serialVersionUID = 1;
/** Class only constructor. */
public VarTypeAlreadyUsedException()
{
super(
"Attempt to reuse an already cashed VarType instance. VarType's must be " +
"reconstructed each time they are used, unless they have been contructed to " +
"support re-usability."
);
}
}
|