Sho SHIMIZU
Committed by Ray Milkey

Rename package because exception fits Java's convention more

Change-Id: I43dd23f6cac6bffda159e783164059f2447aa7ff
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 * See the License for the specific language governing permissions and 13 * See the License for the specific language governing permissions and
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 -package org.onosproject.ovsdb.rfc.error; 16 +package org.onosproject.ovsdb.rfc.exception;
17 17
18 /** 18 /**
19 * AbnormalJsonNodeException exception is thrown when the received JsonNode is invalid. 19 * AbnormalJsonNodeException exception is thrown when the received JsonNode is invalid.
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 * See the License for the specific language governing permissions and 13 * See the License for the specific language governing permissions and
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 -package org.onosproject.ovsdb.rfc.error; 16 +package org.onosproject.ovsdb.rfc.exception;
17 17
18 import static com.google.common.base.MoreObjects.toStringHelper; 18 import static com.google.common.base.MoreObjects.toStringHelper;
19 19
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 * See the License for the specific language governing permissions and 13 * See the License for the specific language governing permissions and
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 -package org.onosproject.ovsdb.rfc.error; 16 +package org.onosproject.ovsdb.rfc.exception;
17 17
18 import static com.google.common.base.MoreObjects.toStringHelper; 18 import static com.google.common.base.MoreObjects.toStringHelper;
19 19
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 * See the License for the specific language governing permissions and 13 * See the License for the specific language governing permissions and
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 -package org.onosproject.ovsdb.rfc.error; 16 +package org.onosproject.ovsdb.rfc.exception;
17 17
18 /** 18 /**
19 * This exception is thrown when the caller invoke the unsupported method or 19 * This exception is thrown when the caller invoke the unsupported method or
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 * See the License for the specific language governing permissions and 13 * See the License for the specific language governing permissions and
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 -package org.onosproject.ovsdb.rfc.error; 16 +package org.onosproject.ovsdb.rfc.exception;
17 17
18 18
19 /** 19 /**
......
...@@ -17,7 +17,7 @@ package org.onosproject.ovsdb.rfc.schema.type; ...@@ -17,7 +17,7 @@ package org.onosproject.ovsdb.rfc.schema.type;
17 17
18 import java.util.Set; 18 import java.util.Set;
19 19
20 -import org.onosproject.ovsdb.rfc.error.AbnormalJsonNodeException; 20 +import org.onosproject.ovsdb.rfc.exception.AbnormalJsonNodeException;
21 import org.onosproject.ovsdb.rfc.schema.type.UuidBaseType.RefType; 21 import org.onosproject.ovsdb.rfc.schema.type.UuidBaseType.RefType;
22 import org.onosproject.ovsdb.rfc.utils.ObjectMapperUtil; 22 import org.onosproject.ovsdb.rfc.utils.ObjectMapperUtil;
23 23
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
15 */ 15 */
16 package org.onosproject.ovsdb.rfc.schema.type; 16 package org.onosproject.ovsdb.rfc.schema.type;
17 17
18 -import org.onosproject.ovsdb.rfc.error.AbnormalJsonNodeException; 18 +import org.onosproject.ovsdb.rfc.exception.AbnormalJsonNodeException;
19 import org.onosproject.ovsdb.rfc.utils.ObjectMapperUtil; 19 import org.onosproject.ovsdb.rfc.utils.ObjectMapperUtil;
20 20
21 import com.fasterxml.jackson.databind.JsonNode; 21 import com.fasterxml.jackson.databind.JsonNode;
......
...@@ -20,9 +20,9 @@ import static com.google.common.base.Preconditions.checkNotNull; ...@@ -20,9 +20,9 @@ import static com.google.common.base.Preconditions.checkNotNull;
20 20
21 import java.util.Objects; 21 import java.util.Objects;
22 22
23 -import org.onosproject.ovsdb.rfc.error.ColumnSchemaNotFoundException; 23 +import org.onosproject.ovsdb.rfc.exception.ColumnSchemaNotFoundException;
24 -import org.onosproject.ovsdb.rfc.error.TableSchemaNotFoundException; 24 +import org.onosproject.ovsdb.rfc.exception.TableSchemaNotFoundException;
25 -import org.onosproject.ovsdb.rfc.error.VersionMismatchException; 25 +import org.onosproject.ovsdb.rfc.exception.VersionMismatchException;
26 import org.onosproject.ovsdb.rfc.notation.Column; 26 import org.onosproject.ovsdb.rfc.notation.Column;
27 import org.onosproject.ovsdb.rfc.notation.Row; 27 import org.onosproject.ovsdb.rfc.notation.Row;
28 import org.onosproject.ovsdb.rfc.notation.UUID; 28 import org.onosproject.ovsdb.rfc.notation.UUID;
......
...@@ -21,8 +21,8 @@ import java.util.Iterator; ...@@ -21,8 +21,8 @@ import java.util.Iterator;
21 import java.util.List; 21 import java.util.List;
22 import java.util.Map; 22 import java.util.Map;
23 23
24 -import org.onosproject.ovsdb.rfc.error.AbnormalJsonNodeException; 24 +import org.onosproject.ovsdb.rfc.exception.AbnormalJsonNodeException;
25 -import org.onosproject.ovsdb.rfc.error.UnsupportedException; 25 +import org.onosproject.ovsdb.rfc.exception.UnsupportedException;
26 import org.onosproject.ovsdb.rfc.jsonrpc.Callback; 26 import org.onosproject.ovsdb.rfc.jsonrpc.Callback;
27 import org.onosproject.ovsdb.rfc.jsonrpc.JsonRpcResponse; 27 import org.onosproject.ovsdb.rfc.jsonrpc.JsonRpcResponse;
28 import org.onosproject.ovsdb.rfc.message.OperationResult; 28 import org.onosproject.ovsdb.rfc.message.OperationResult;
......
...@@ -22,7 +22,7 @@ import java.io.IOException; ...@@ -22,7 +22,7 @@ import java.io.IOException;
22 import java.util.List; 22 import java.util.List;
23 import java.util.Stack; 23 import java.util.Stack;
24 24
25 -import org.onosproject.ovsdb.rfc.error.UnsupportedException; 25 +import org.onosproject.ovsdb.rfc.exception.UnsupportedException;
26 import org.onosproject.ovsdb.rfc.jsonrpc.JsonReadContext; 26 import org.onosproject.ovsdb.rfc.jsonrpc.JsonReadContext;
27 27
28 import com.fasterxml.jackson.core.JsonEncoding; 28 import com.fasterxml.jackson.core.JsonEncoding;
......