source: src/main/java/bargainingchips/protocol/ValidationFailure.java@ 325

Last change on this file since 325 was 319, checked in by Tim Baarslag, 6 years ago

validate gives a ValidationResult

File size: 242 bytes
Line 
1package bargainingchips.protocol;
2/**
3 * The offer was NOT valid and the negotiation is still ongoing
4 */
5public class ValidationFailure extends ValidationResult
6{
7 public ValidationFailure()
8 {
9 super(false, false, null);
10 }
11}
Note: See TracBrowser for help on using the repository browser.