com.alphasystem.docbook.model.NotImplementedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docbook-2-docx Show documentation
Show all versions of docbook-2-docx Show documentation
Alpha system commons library
The newest version!
package com.alphasystem.docbook.model;
public class NotImplementedException extends IllegalArgumentException {
public NotImplementedException(Object parent, Object child) {
super(String.format("Type \"%s\" is not implemented yet in \"%s\".", child.getClass().getName(), parent.getClass().getName()));
}
}