com.emc.mongoose.base.config.IllegalConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoose-base Show documentation
Show all versions of mongoose-base Show documentation
Mongoose is a high-load storage performance testing tool
package com.emc.mongoose.base.config;
/** Created by kurila on 14.07.16. */
public class IllegalConfigurationException
extends IllegalStateException {
public IllegalConfigurationException() {
super();
}
public IllegalConfigurationException(final String msg) {
super(msg);
}
public IllegalConfigurationException(final Throwable cause) {
super(cause);
}
public IllegalConfigurationException(final String msg, final Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy