All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.peterphi.std.util.jaxb.exception.SchemaValidationException Maven / Gradle / Ivy

There is a newer version: 10.1.5
Show newest version
package com.peterphi.std.util.jaxb.exception;

public class SchemaValidationException extends RuntimeException
{
	private static final long serialVersionUID = 1L;


	public SchemaValidationException(String msg, Throwable t)
	{
		super(msg, t);
	}


	public SchemaValidationException(Throwable t)
	{
		super(t);
	}


	public SchemaValidationException(String msg)
	{
		super(msg);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy