PropertyPathAccessException.java :  » JSON » svenson » org » svenson » util » Java Open Source

Java Open Source » JSON » svenson 
svenson » org » svenson » util » PropertyPathAccessException.java
package org.svenson.util;

public class PropertyPathAccessException
    extends RuntimeException
{
    private static final long serialVersionUID = 8271024489492558383L;

    public PropertyPathAccessException(String propertyPath, Object bean, String message)
    {
        super("Access error in path \"" + propertyPath + "\" on " + bean + ": " +  message);
    }
    
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.