package bargainingchips.protocol; import bargainingchips.actions.Disagreement; /** * The offer was valid but the negotiation has ended WITHOUT a deal */ public class ValidationSuccessWithBreakoff extends ValidationResult { public ValidationSuccessWithBreakoff() { super(true, true, new Disagreement()); } }