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

com.legstar.avro.translator.Cob2AvroException Maven / Gradle / Ivy

package com.legstar.avro.translator;

import java.io.IOException;

public class Cob2AvroException extends IOException {

	private static final long serialVersionUID = -9123916734116875812L;

	public Cob2AvroException(final String message) {
		super(message);
	}

	public Cob2AvroException(final String message, Throwable cause) {
		super(message, cause);
	}

	public Cob2AvroException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy