All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alphasystem.docbook.model.NotImplementedException Maven / Gradle / Ivy

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()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy