if (samplePolicy.getDeductibles() < 0) {
throw new InvalidInputValueException(
"Deductibles can't be negative.");
}
if (samplePolicy.getPropertyName() == null) {
throw new MissingInputValueException(
"Property name must be specified.");
}
if (samplePolicy.getQuote() <= 0) {
throw new InvalidInputValueException("Quote must be positive.");
}