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

com.seeq.utilities.exception.NotImplementedException Maven / Gradle / Ivy

The newest version!
package com.seeq.utilities.exception;

public class NotImplementedException extends RuntimeException {
    private static final long serialVersionUID = -7364817672120932937L;

    public NotImplementedException() {}

    public NotImplementedException(String message) {
        super(message);
    }

    public NotImplementedException(String message, Exception parentException) {
        super(message, parentException);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy