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

com.causecode.exceptions.RequiredPropertyMissingException.groovy Maven / Gradle / Ivy

Go to download

A plugin used to manage contents like static pages, menus etc. at one place. Also provides shortened and user friendly urls.

There is a newer version: 2.6.2
Show newest version
/*
 * Copyright (c) 2011, CauseCode Technologies Pvt Ltd, India.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or
 * without modification, are not permitted.
 */
package com.causecode.exceptions

/**
 * Thrown when a named property of a specific type is not present in a class.
 * @author Deepen Dhamecha
 */
class RequiredPropertyMissingException extends Exception {

    RequiredPropertyMissingException() {
        super()
    }

    RequiredPropertyMissingException(String message) {
        super(message)
    }

    RequiredPropertyMissingException(String message, Throwable cause) {
        super(message, cause)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy