com.windowsazure.samples.internal.OperationNotSupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa4azure Show documentation
Show all versions of jpa4azure Show documentation
jpa4azure, implements a subset of the JPA specification using Azure Storage for pesisting beans. see http://jpa4azure.codeplex.com for more information.
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 extends AuthenticationToken> 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