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

com.gregmarut.support.beangenerator.BeanInitializationException Maven / Gradle / Ivy

Go to download

Supports unit testing by dynamically creating bean objects and populating their fields to default values.

There is a newer version: 2.7-RELEASE
Show newest version
/*******************************************************************************
 * 
 * Copyright (c) 2015 Greg Marut.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Public License v3.0
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/gpl.html
 * 
 * Contributors:
 *     Greg Marut - initial API and implementation
 * 
******************************************************************************/ package com.gregmarut.support.beangenerator; import com.gregmarut.support.beangenerator.config.InterfaceMapper; /** * This class is thrown whenever an attempt to initialize a class could not be completed. Once * example might be an attempt to instantiate an interface without properly mapping it to a concrete * class in {@link InterfaceMapper}. * * @author Greg Marut */ public final class BeanInitializationException extends RuntimeException { private static final long serialVersionUID = 5260298124435086740L; public BeanInitializationException() { } public BeanInitializationException(final Exception cause) { super(cause); } public BeanInitializationException(final String message) { super(message); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy