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

com.softicar.platform.common.code.reference.point.SourceCodeReferencePointMissingUuidAnnotationException Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.code.reference.point;

import com.softicar.platform.common.core.exceptions.SofticarDeveloperException;

/**
 * This exception is thrown if the class of a given
 * {@link ISourceCodeReferencePoint} is missing the
 * {@link SourceCodeReferencePointUuid} annotation.
 *
 * @author Oliver Richers
 */
public class SourceCodeReferencePointMissingUuidAnnotationException extends SofticarDeveloperException {

	public SourceCodeReferencePointMissingUuidAnnotationException(Class referencePointClass) {

		super(//
			"Missing %s annotation on class: %s",
			SourceCodeReferencePointUuid.class.getSimpleName(),
			referencePointClass.getCanonicalName());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy