com.peterphi.std.indexservice.rest.client.NoServiceFoundException Maven / Gradle / Ivy
package com.peterphi.std.indexservice.rest.client;
public class NoServiceFoundException extends RuntimeException
{
private static final long serialVersionUID = 1L;
public NoServiceFoundException(String msg, Throwable t)
{
super(msg, t);
}
public NoServiceFoundException(String msg)
{
super(msg);
}
public NoServiceFoundException(Throwable t)
{
super(t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy