blob: f9321b6acfe172056cc8caeaf20eecfe019afe0f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.lang;
import static org.apache.ignite.lang.ErrorGroups.Table.UNSUPPORTED_PARTITION_TYPE_ERR;
import java.util.UUID;
import org.jetbrains.annotations.Nullable;
/**
* This exception is thrown when a table does not support the specified partition type.
*/
public class UnsupportedPartitionTypeException extends IgniteException {
private static final long serialVersionUID = 6875586826126580903L;
/**
* Creates a new exception with the given message.
*
* @param message Exception message.
*/
public UnsupportedPartitionTypeException(String message) {
super(UNSUPPORTED_PARTITION_TYPE_ERR, message);
}
/**
* Creates a new exception with the given trace id, error code, detail message and cause.
*
* @param traceId Unique identifier of this exception.
* @param code Full error code.
* @param message Detail message.
* @param cause Optional nested exception (can be {@code null}).
*/
public UnsupportedPartitionTypeException(UUID traceId, int code, String message, @Nullable Throwable cause) {
super(traceId, code, message, cause);
}
}