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

scouter.agent.error.TOO_MANY_COLLECTION_MEMBERS Maven / Gradle / Ivy

There is a newer version: 2.20.0
Show newest version
package scouter.agent.error;

import java.sql.SQLException;

public class TOO_MANY_COLLECTION_MEMBERS extends SQLException {

	public TOO_MANY_COLLECTION_MEMBERS() {
	}

	public TOO_MANY_COLLECTION_MEMBERS(String reason) {
		super(reason);
	}

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

	public TOO_MANY_COLLECTION_MEMBERS(String reason, String SQLState) {
		super(reason, SQLState);
	}

	public TOO_MANY_COLLECTION_MEMBERS(String reason, Throwable cause) {
		super(reason, cause);
	}

	public TOO_MANY_COLLECTION_MEMBERS(String reason, String SQLState, int vendorCode) {
		super(reason, SQLState, vendorCode);
	}

	public TOO_MANY_COLLECTION_MEMBERS(String reason, String sqlState, Throwable cause) {
		super(reason, sqlState, cause);
		// TODO Auto-generated constructor stub
	}

	public TOO_MANY_COLLECTION_MEMBERS(String reason, String sqlState, int vendorCode, Throwable cause) {
		super(reason, sqlState, vendorCode, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy