[aXSL-commit] SF.net SVN: axsl: [425] trunk/axsl
An API for XSL-FO.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-03-13 18:29:13
|
Revision: 425 Author: victormote Date: 2006-03-13 10:29:01 -0800 (Mon, 13 Mar 2006) ViewCVS: http://svn.sourceforge.net/axsl/?rev=425&view=rev Log Message: ----------- Add new project for PDF output. Added Paths: ----------- trunk/axsl/axsl-pdf/ trunk/axsl/axsl-pdf/.classpath trunk/axsl/axsl-pdf/.project trunk/axsl/axsl-pdf/src/ trunk/axsl/axsl-pdf/src/java/ trunk/axsl/axsl-pdf/src/java/org/ trunk/axsl/axsl-pdf/src/java/org/axsl/ trunk/axsl/axsl-pdf/src/java/org/axsl/pdf/ trunk/axsl/axsl-pdf/src/java/org/axsl/pdf/PDFException.java Property changes on: trunk/axsl/axsl-pdf ___________________________________________________________________ Name: svn:ignore + build zzlocal Added: trunk/axsl/axsl-pdf/.classpath =================================================================== --- trunk/axsl/axsl-pdf/.classpath (rev 0) +++ trunk/axsl/axsl-pdf/.classpath 2006-03-13 18:29:01 UTC (rev 425) @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="src" path="src/java"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="output" path="build/eclipse"/> +</classpath> Added: trunk/axsl/axsl-pdf/.project =================================================================== --- trunk/axsl/axsl-pdf/.project (rev 0) +++ trunk/axsl/axsl-pdf/.project 2006-03-13 18:29:01 UTC (rev 425) @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>axslPDF</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + </natures> +</projectDescription> Added: trunk/axsl/axsl-pdf/src/java/org/axsl/pdf/PDFException.java =================================================================== --- trunk/axsl/axsl-pdf/src/java/org/axsl/pdf/PDFException.java (rev 0) +++ trunk/axsl/axsl-pdf/src/java/org/axsl/pdf/PDFException.java 2006-03-13 18:29:01 UTC (rev 425) @@ -0,0 +1,58 @@ +/* + * Copyright 2006 The aXSL Project. + * http://www.axsl.org + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +/* $Id: GraphicException.java 396 2006-02-23 18:22:25Z victormote $ */ + +package org.axsl.pdf; + +/** + * Exception thrown when an axslPDF implementation has a problem. + */ +public class PDFException extends Exception { + + static final long serialVersionUID = 953694784526821314L; + + /** + * Create a new PDFException. + * Identical to {@link Exception#Exception(java.lang.String)} + * @see Exception#Exception(java.lang.String) + */ + public PDFException(String message) { + super(message); + } + + /** + * Create a new PDFException. + * Identical to {@link Exception#Exception(java.lang.Throwable)} + * @see Exception#Exception(java.lang.Throwable) + */ + public PDFException(Throwable cause) { + super(cause); + } + + /** + * Create a new PDFException. + * Identical to {@link Exception#Exception(java.lang.String, + * java.lang.Throwable)} + * @see Exception#Exception(java.lang.String, java.lang.Throwable) + */ + public PDFException(String message, Throwable cause) { + super(message, cause); + } + +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |