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

io.openapiprocessor.jsonschema.schema.InvalidPropertyException Maven / Gradle / Ivy

/*
 * Copyright 2022 https://github.com/openapi-processor/openapi-parser
 * PDX-License-Identifier: Apache-2.0
 */

package io.openapiprocessor.jsonschema.schema;

public class InvalidPropertyException extends RuntimeException {

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

    public InvalidPropertyException (String message, Exception e) {
        super(message, e);
    }

    public InvalidPropertyException (JsonPointer location) {
        this (location.toString ());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy