We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.server.
Class PaintException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.vaadin.server.PaintException
-
All Implemented Interfaces:
public class PaintException extends IOException
PaintExcepection
is thrown if painting of a component fails.Since:
3.0
Author:
Vaadin Ltd.
See Also:
-
-
Constructor Summary
Constructors Constructor Description PaintException(IOException exception)
Constructs an instance of
PaintExeception
from IOException.PaintException(String msg)
Constructs an instance of
PaintExeception
with the specified detail message.PaintException(String msg, Throwable cause)
Constructs an instance of
PaintExeception
with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PaintException
public PaintException(String msg)
Constructs an instance of
PaintExeception
with the specified detail message.Parameters:
msg
- the detail message.
-
PaintException
public PaintException(String msg, Throwable cause)
Constructs an instance of
PaintExeception
with the specified detail message and cause.Parameters:
msg
- the detail message.cause
- the cause
-
PaintException
public PaintException(IOException exception)
Constructs an instance of
PaintExeception
from IOException.Parameters:
exception
- the original exception.
-
-