/* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.fxml; /** * Thrown when a caller attempts to set the value of a non-existent bean * property. */ public class PropertyNotFoundException extends RuntimeException { private static final long serialVersionUID = 0; public PropertyNotFoundException() { super(); } public PropertyNotFoundException(String message) { super(message); } public PropertyNotFoundException(Throwable cause) { super(cause); } public PropertyNotFoundException(String message, Throwable cause) { super(message, cause); } }