[cairo-commit] CairoJava/src/org/cairographics/cairo
SurfaceNotSupportedException.java, NONE, 1.1
Soorya Kuloor
commit at pdx.freedesktop.org
Tue May 11 12:53:02 PDT 2004
Committed by: skuloor
Update of /cvs/cairo/CairoJava/src/org/cairographics/cairo
In directory pdx:/tmp/cvs-serv1228/src/org/cairographics/cairo
Added Files:
SurfaceNotSupportedException.java
Log Message:
Initial version
--- NEW FILE: SurfaceNotSupportedException.java ---
/*
* $Header: /cvs/cairo/CairoJava/src/org/cairographics/cairo/SurfaceNotSupportedException.java,v 1.1 2004/05/11 19:53:00 skuloor Exp $
*
* Copyright (C) 2004 Verano
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose is hereby granted without
* fee, provided that the above copyright notice appear in all copies
* and that both that copyright notice and this permission notice
* appear in supporting documentation, and that the name of
* Verano not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior permission.
* Verano makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*
* VERANO MAKES NO REPRESENTATIONS OR WARRANTIES OR COVENANTS, EITHER
* EXPRESS OR IMPLIED, WITH RESPECT TO THIS SOFTWARE, INCLUDING
* WITHOUT LIMITATION, STATUTORY OR IMPLIED WARRANTIES OR CONDITIONS
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE,
* NON-INFRINGEMENT, OR ARISING FROM CUSTOM, COURSE OF DEALING, USAGE
* OF TRADE OR COURSE OF PERFORMANCE, ALL OF WHICH ARE EXPRESSLY
* DISCLAIMED TO THE FULLEST EXTENT ALLOWABLE BY APPLICABLE LAW. IN
* NO EVENT SHALL VERANO BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
package org.cairographics.cairo;
/**
* Exception thrown when an attempt is made to use an unsupported surface.
*/
public class SurfaceNotSupportedException extends RuntimeException {
/**
*
*/
public SurfaceNotSupportedException() {
super();
}
/**
* @param message
*/
public SurfaceNotSupportedException(String message) {
super(message);
}
/**
* @param cause
*/
public SurfaceNotSupportedException(Throwable cause) {
super(cause);
}
/**
* @param message
* @param cause
*/
public SurfaceNotSupportedException(String message, Throwable cause) {
super(message, cause);
}
} // class SurfaceNotSupportedException
More information about the cairo-commit
mailing list