source: src/main/java/bargainingchips/protocol/ValidationSuccessWithDisagreement.java@ 337

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

Outcome defined

File size: 335 bytes
RevLine 
[319]1package bargainingchips.protocol;
2
[327]3import bargainingchips.outcomes.Disagreement;
[321]4
[319]5/**
6 * The offer was valid but the negotiation has ended WITHOUT a deal
7 */
[326]8public class ValidationSuccessWithDisagreement extends ValidationResult
[319]9{
[326]10 public ValidationSuccessWithDisagreement()
[319]11 {
[326]12 super(true, new Disagreement());
[319]13 }
14}
Note: See TracBrowser for help on using the repository browser.