From da731d2bb81666b9c697d9099da632e7dfcdc0f7 Mon Sep 17 00:00:00 2001 From: Andrew Branson Date: Tue, 9 Sep 2014 12:13:21 +0200 Subject: Replaced int sysKey Item identifier with UUID, which is now portable. ItemPath objects are now used to identify Items throughout the kernel, replacing ints and Integers. --- .../persistency/ClusterStorageException.java | 33 +++++++--------------- 1 file changed, 10 insertions(+), 23 deletions(-) (limited to 'src/main/java/com/c2kernel/persistency/ClusterStorageException.java') diff --git a/src/main/java/com/c2kernel/persistency/ClusterStorageException.java b/src/main/java/com/c2kernel/persistency/ClusterStorageException.java index 3b3ad50..8648f9e 100644 --- a/src/main/java/com/c2kernel/persistency/ClusterStorageException.java +++ b/src/main/java/com/c2kernel/persistency/ClusterStorageException.java @@ -1,32 +1,19 @@ package com.c2kernel.persistency; /** - * - * @author abranson - * @author ogattaz + * + * @version $Revision: 1.2 $ $Date: 2003/07/14 07:57:06 $ + * @author $Author: abranson $ */ public class ClusterStorageException extends Exception { - - /** - * - */ - private static final long serialVersionUID = -497478376391615904L; - - /** - * - */ - public ClusterStorageException() { - super(); - } - - /** - * @param aMessage - * the detail message. - */ - public ClusterStorageException(String aMessage) { - super(aMessage); - } + public ClusterStorageException() { + super(); + } + + public ClusterStorageException(String s) { + super(s); + } /** * @param aMessage -- cgit v1.2.3