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

com.nedap.archie.rmobjectvalidator.RMObjectValidationException Maven / Gradle / Ivy

Go to download

tools that operate on the archie reference models and archetype object model

The newest version!
package com.nedap.archie.rmobjectvalidator;

/**
 * Exception to indicate RM Object validation has failed
 * 

* Created by pieter.bos on 01/09/15. * * @deprecated This exception is unused and will be removed. */ @Deprecated public class RMObjectValidationException extends Exception { private String path; private String humanPath; public RMObjectValidationException(String path, String humanPath, String message) { super(message); this.path = path; this.humanPath = humanPath; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getHumanPath() { return humanPath; } public void setHumanPath(String humanPath) { this.humanPath = humanPath; } public RMObjectValidationMessage getValidationMessage() { return new RMObjectValidationMessage(this); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy