source: src/main/java/bargainingchips/protocol/ValidationSuccessWithBreakoff.java@ 320

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

validate gives a ValidationResult

File size: 270 bytes
Line 
1package bargainingchips.protocol;
2
3/**
4 * The offer was valid but the negotiation has ended WITHOUT a deal
5 */
6public class ValidationSuccessWithBreakoff extends ValidationResult
7{
8 public ValidationSuccessWithBreakoff()
9 {
10 super(true, true, null);
11 }
12}
Note: See TracBrowser for help on using the repository browser.