package org.unsynchronized; import java.io.*; import java.util.*; /** * Exception that denotes that data in the stream did not conform to the constraints * imposed by the specification. */ public class ValidityException extends IOException { public static final long serialVersionUID = 2277356908919241L; public ValidityException(String msg) { super(msg); } }