source: src/main/java/bargainingchips/protocol/ValidationSuccess.java@ 330

Last change on this file since 330 was 326, checked in by Tim Baarslag, 5 years ago

More consistent ValidationResult

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