All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.commons.marshall.MarshallingException Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev03
Show newest version
package org.infinispan.commons.marshall;

import org.infinispan.commons.CacheException;

/**
 * An exception that can be thrown by a cache if an object cannot be successfully serialized/deserialized.
 *
 * @author Ryan Emerson
 * @since 10.0
 */
public class MarshallingException extends CacheException {
   public MarshallingException() {
      super();
   }

   public MarshallingException(Throwable cause) {
      super(cause);
   }

   public MarshallingException(String msg) {
      super(msg);
   }

   public MarshallingException(String msg, Throwable cause) {
      super(msg, cause);
   }

   public MarshallingException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
      super(message, cause, enableSuppression, writableStackTrace);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy