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

com.feilong.lib.xstream.converters.reflection.MissingFieldException Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/*
 * Copyright (C) 2011, 2016 XStream Committers.
 * All rights reserved.
 *
 * The software in this package is published under the terms of the BSD
 * style license a copy of which has been included with this distribution in
 * the LICENSE.txt file.
 * 
 * Created on 01. October 2011 by Joerg Schaible
 */
package com.feilong.lib.xstream.converters.reflection;

/**
 * Indicates a missing field or property creating an object.
 *
 * @author Nikita Levyankov
 * @author Joerg Schaible
 * @since 1.4.2
 */
public class MissingFieldException extends ObjectAccessException{

    /**
     * 
     */
    private static final long serialVersionUID = 2195464861195893752L;

    private final String      fieldName;

    private final String      className;

    /**
     * Construct a MissingFieldException.
     * 
     * @param className
     *            the name of the class missing the field
     * @param fieldName
     *            the name of the missed field
     * @since 1.4.2
     */
    public MissingFieldException(final String className, final String fieldName){
        super("Field not found in class.");
        this.className = className;
        this.fieldName = fieldName;
        add("field", className + "." + fieldName);
    }

    /**
     * Retrieve the name of the missing field.
     * 
     * @return the field name
     * @since 1.4.2
     */
    public String getFieldName(){
        return fieldName;
    }

    /**
     * Retrieve the name of the class with the missing field.
     * 
     * @return the class name
     * @since 1.4.2
     */
    protected String getClassName(){
        return className;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy