com.brettonw.bag.BadVersionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bag Show documentation
Show all versions of bag Show documentation
Bag provides two container classes for text-based storage of constrained types in
an array (BagArray) or as a map (BagObject), with a means of serializing objects to and from
these container types.
package com.brettonw.bag;
public class BadVersionException extends RuntimeException {
public BadVersionException (String got, @SuppressWarnings ("SameParameterValue") String expected) {
super ("Incorrect version (got: " + got + ", expected: " + expected + ")");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy