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

com.github.karsaig.approvalcrest.PathNullPointerException Maven / Gradle / Ivy

The newest version!
package com.github.karsaig.approvalcrest;

public class PathNullPointerException extends NullPointerException {

    private static final long serialVersionUID = 4210770969303844915L;
    private final String path;

    PathNullPointerException(String path) {
        this.path = path;
    }

    public String getPath() {
        return path;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy