
org.sakaiproject.modi.MalformedComponentException Maven / Gradle / Ivy
The newest version!
package org.sakaiproject.modi;
import java.nio.file.Path;
/**
* Thrown if a component directory is attempted to be loaded, but does not conform to the expectations.
*
* See {@link TraditionalComponent} for the expectations for traditional, on-disk components. There are no other
* component types defined at this time.
*/
public class MalformedComponentException extends Exception {
public MalformedComponentException(Path path, String problem) {
super(String.format("Malformed component at: %s -- %s", path, problem));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy