public class

InvalidPipeException

extends IllegalStateException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ java.lang.IllegalStateException
           ↳ sun.java2d.InvalidPipeException

Class Overview

Signals that some part of a graphics pipeline is not in an appropriate state for the requested operation. The most likely cause of this is an asynchronous change to the configuration of the destination surface since the current set of rendering loops was chosen. Other potential causes are the appearance or disappearance of overlapping opaque windows which toggle the need to use platform graphics or direct graphics access.

Summary

Public Constructors
InvalidPipeException()
Constructs an InvalidPipeException with no detail message.
InvalidPipeException(String s)
Constructs an InvalidPipeException with the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public InvalidPipeException ()

Constructs an InvalidPipeException with no detail message. A detail message is a String that describes this particular exception.

public InvalidPipeException (String s)

Constructs an InvalidPipeException with the specified detail message. A detail message is a String that describes this particular exception.

Parameters
s the String that contains a detailed message