1 package com.thoughtworks.xstream.io;2 3 public class StreamException extends RuntimeException {4 public StreamException(Throwable e) {5 super(e.getMessage());6 }7 }8