blob: 7daa80627aac85480c0172df410ee6f3c98a490c [file] [log] [blame]
/*
* Copyright 2021-present Open Networking Foundation
*
* 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
*
* 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.onosproject.net.behaviour.upf;
/**
* An exception indicating a an error happened in the UPF programmable behaviour.
* Possible errors include the attempted insertion of a malformed flow rule, the
* reading or writing of an out-of-bounds counter cell, the deletion of a non-existent
* flow rule, and the attempted insertion of a flow rule into a full table.
*/
public class UpfProgrammableException extends Exception {
private final Type type;
public enum Type {
/**
* The UpfProgrammable did not provide a specific exception type.
*/
UNKNOWN,
/**
* The target table is at capacity.
*/
TABLE_EXHAUSTED,
/**
* A provided counter cell index was out of range.
*/
COUNTER_INDEX_OUT_OF_RANGE,
/**
* The UpfProgrammable implementation doesn't support the operation.
*/
UNSUPPORTED_OPERATION
}
/**
* Creates a new exception for the given message.
*
* @param message message
*/
public UpfProgrammableException(String message) {
super(message);
this.type = Type.UNKNOWN;
}
/**
* Creates a new exception for the given message and type.
*
* @param message exception message
* @param type exception type
*/
public UpfProgrammableException(String message, Type type) {
super(message);
this.type = type;
}
/**
* Get the type of the exception.
*
* @return exception type
*/
public Type getType() {
return type;
}
}