com.atlassian.confluence.core
Class InputStreamExceptionDecorator

java.lang.Object
  extended by java.io.InputStream
      extended by com.atlassian.confluence.core.InputStreamExceptionDecorator
All Implemented Interfaces:
Closeable

public class InputStreamExceptionDecorator
extends InputStream

Decorator for potential IOExceptions thrown by an InputStream.

Since:
5.2

Constructor Summary
InputStreamExceptionDecorator(InputStream delegate, com.google.common.base.Function<IOException,IOException> exceptionDecorator)
           
 
Method Summary
 int available()
           
 void close()
           
 boolean equals(Object obj)
           
 int hashCode()
           
 void mark(int readlimit)
           
 boolean markSupported()
           
 int read()
           
 int read(byte[] b)
           
 int read(byte[] b, int off, int len)
           
 void reset()
           
 long skip(long n)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InputStreamExceptionDecorator

public InputStreamExceptionDecorator(InputStream delegate,
                                     com.google.common.base.Function<IOException,IOException> exceptionDecorator)
Method Detail

read

public int read()
         throws IOException
Specified by:
read in class InputStream
Throws:
IOException

read

public int read(byte[] b)
         throws IOException
Overrides:
read in class InputStream
Throws:
IOException

read

public int read(byte[] b,
                int off,
                int len)
         throws IOException
Overrides:
read in class InputStream
Throws:
IOException

skip

public long skip(long n)
          throws IOException
Overrides:
skip in class InputStream
Throws:
IOException

available

public int available()
              throws IOException
Overrides:
available in class InputStream
Throws:
IOException

close

public void close()
           throws IOException
Specified by:
close in interface Closeable
Overrides:
close in class InputStream
Throws:
IOException

reset

public void reset()
           throws IOException
Overrides:
reset in class InputStream
Throws:
IOException

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object

toString

public String toString()
Overrides:
toString in class Object

mark

public void mark(int readlimit)
Overrides:
mark in class InputStream

markSupported

public boolean markSupported()
Overrides:
markSupported in class InputStream


Copyright © 2003–2015 Atlassian. All rights reserved.