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

com.windowsazure.samples.internal.OperationNotSupportedException Maven / Gradle / Ivy

Go to download

jpa4azure, implements a subset of the JPA specification using Azure Storage for pesisting beans. see http://jpa4azure.codeplex.com for more information.

There is a newer version: 0.7
Show newest version
package com.windowsazure.samples.internal;

import com.windowsazure.samples.authentication.AuthenticationToken;


public class OperationNotSupportedException extends Exception {
	
	public OperationNotSupportedException() {
		super("This operation is not supported.");
	}
	
	public OperationNotSupportedException(AzureOperation operation, AzureStrategy strategy) {
		super("Operation" + operation + " is not supported by strategy " + strategy.getClass().toString());
	}
	
	private static final long serialVersionUID = -2010591407052857763L;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy