com.dooapp.gaedo.blueprints.queries.tests.NullExpectedValueException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gaedo-blueprints Show documentation
Show all versions of gaedo-blueprints Show documentation
Implementation of gaedo mechanisms backed by blueprints graph layer
package com.dooapp.gaedo.blueprints.queries.tests;
import com.dooapp.gaedo.CrudServiceException;
public class NullExpectedValueException extends CrudServiceException {
public NullExpectedValueException() {
}
public NullExpectedValueException(String message) {
super(message);
}
public NullExpectedValueException(Throwable cause) {
super(cause);
}
public NullExpectedValueException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy