/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package org.ow2.choreos.services; public class UnhandledModificationException extends Exception { private static final long serialVersionUID = -1152136954587645014L; public UnhandledModificationException() { // TODO Auto-generated constructor stub } public UnhandledModificationException(String message) { super(message); // TODO Auto-generated constructor stub } public UnhandledModificationException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public UnhandledModificationException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }