public class QuantisationException
extends java.lang.Exception
By quantise, we mean to try and limit a set of values within a continuous range, to a range of discrete values. Generally this range of discrete values is a set of multiples of a quantum value.
This exception may be thrown when a set of values within a continuous range does not fit within the discrete values. It can also be thrown if the quantum value is less than or equal to zero.
Phrase
,
Serialized FormConstructor and Description |
---|
QuantisationException()
Constructs a
QuantisationException with no detail message. |
QuantisationException(java.lang.String s)
Constructs a
QuantisationException with the specified detail
message. |
public QuantisationException()
QuantisationException
with no detail message.
detail message.public QuantisationException(java.lang.String s)
QuantisationException
with the specified detail
message.s
- the detail message.