io.milton.dns.record.RelativeNameException Maven / Gradle / Ivy
// Copyright (c) 2003-2004 Brian Wellington ([email protected])
package io.milton.dns.record;
import io.milton.dns.Name;
/**
* An exception thrown when a relative name is passed as an argument to
* a method requiring an absolute name.
*
* @author Brian Wellington
*/
public class RelativeNameException extends IllegalArgumentException {
public
RelativeNameException(Name name) {
super("'" + name + "' is not an absolute name");
}
public
RelativeNameException(String s) {
super(s);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy