/******************************************************************************* * Copyright (c) 2006-2010 eBay Inc. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *******************************************************************************/ package org.ebayopensource.turmeric.runtime.common.exceptions; import org.ebayopensource.turmeric.common.v1.types.CommonErrorData; /** * Exception that is thrown when an error occur during service creation process. * * @author smalladi */ public class ServiceCreationException extends ServiceException { /** * * @param errorData The CommonErrorData structure to be reported. */ public ServiceCreationException(CommonErrorData errorData) { super(errorData); } /** * * @param errorData The CommonErrorData structure to be reported. * @param cause The Throwable that is the cause of this exception. */ public ServiceCreationException(CommonErrorData errorData, Throwable cause) { super(errorData, cause); } /** * serial version UID. */ static final long serialVersionUID = 835486766282112209L; }