You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by jh...@apache.org on 2005/09/30 11:49:43 UTC

svn commit: r292687 - in /cocoon/trunk/src/java/org/apache/cocoon: ./ components/ components/flow/javascript/fom/ components/modules/input/ components/sax/ components/source/ core/ core/osgi/

Author: jheymans
Date: Fri Sep 30 02:49:29 2005
New Revision: 292687

URL: http://svn.apache.org/viewcvs?rev=292687&view=rev
Log:
svn:eol-style=native 

Modified:
    cocoon/trunk/src/java/org/apache/cocoon/ConstantsInitializationException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/components/ContextResourceNotFoundException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/components/flow/javascript/fom/FOMResourceNotFoundException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleAttributeException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleDestructionException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleInitializationException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleNotFoundException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/components/sax/DocumentLocatorException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/components/source/SourceFactoryNotFoundException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/core/CoreException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/core/CoreFatalException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/core/CoreInitializationException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/core/CoreResourceNotFoundException.java   (contents, props changed)
    cocoon/trunk/src/java/org/apache/cocoon/core/osgi/CoreOSGIServiceException.java   (contents, props changed)

Modified: cocoon/trunk/src/java/org/apache/cocoon/ConstantsInitializationException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/ConstantsInitializationException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/ConstantsInitializationException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/ConstantsInitializationException.java Fri Sep 30 02:49:29 2005
@@ -1,31 +1,31 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon;
-
-import org.apache.avalon.framework.CascadingRuntimeException;
-
-public final class ConstantsInitializationException extends CascadingRuntimeException
-{
-    public ConstantsInitializationException(String message)
-    {
-        super(message, null);
-    }
-
-    public ConstantsInitializationException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon;
+
+import org.apache.avalon.framework.CascadingRuntimeException;
+
+public final class ConstantsInitializationException extends CascadingRuntimeException
+{
+    public ConstantsInitializationException(String message)
+    {
+        super(message, null);
+    }
+
+    public ConstantsInitializationException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/ConstantsInitializationException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/components/ContextResourceNotFoundException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/ContextResourceNotFoundException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/ContextResourceNotFoundException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/ContextResourceNotFoundException.java Fri Sep 30 02:49:29 2005
@@ -1,35 +1,35 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.components;
-
-import org.apache.avalon.framework.CascadingRuntimeException;
-
-/**
- * The exception thrown when the ContextHelper can't find the necessary
- * resource.
- */
-public final class ContextResourceNotFoundException extends CascadingRuntimeException
-{
-    public ContextResourceNotFoundException(String message)
-    {
-        super(message, null);
-    }
-
-    public ContextResourceNotFoundException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.components;
+
+import org.apache.avalon.framework.CascadingRuntimeException;
+
+/**
+ * The exception thrown when the ContextHelper can't find the necessary
+ * resource.
+ */
+public final class ContextResourceNotFoundException extends CascadingRuntimeException
+{
+    public ContextResourceNotFoundException(String message)
+    {
+        super(message, null);
+    }
+
+    public ContextResourceNotFoundException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/components/ContextResourceNotFoundException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/components/flow/javascript/fom/FOMResourceNotFoundException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/flow/javascript/fom/FOMResourceNotFoundException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/flow/javascript/fom/FOMResourceNotFoundException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/flow/javascript/fom/FOMResourceNotFoundException.java Fri Sep 30 02:49:29 2005
@@ -1,35 +1,35 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.components.flow.javascript.fom;
-
-import org.apache.avalon.framework.CascadingRuntimeException;
-
-/**
- * The exception thrown when the FOM classes can't find the necessary
- * resource.
- */
-public final class FOMResourceNotFoundException extends CascadingRuntimeException
-{
-    public FOMResourceNotFoundException(String message)
-    {
-        super(message, null);
-    }
-
-    public FOMResourceNotFoundException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.components.flow.javascript.fom;
+
+import org.apache.avalon.framework.CascadingRuntimeException;
+
+/**
+ * The exception thrown when the FOM classes can't find the necessary
+ * resource.
+ */
+public final class FOMResourceNotFoundException extends CascadingRuntimeException
+{
+    public FOMResourceNotFoundException(String message)
+    {
+        super(message, null);
+    }
+
+    public FOMResourceNotFoundException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/components/flow/javascript/fom/FOMResourceNotFoundException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleAttributeException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleAttributeException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleAttributeException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleAttributeException.java Fri Sep 30 02:49:29 2005
@@ -1,29 +1,29 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.components.modules.input;
-
-public final class InputModuleAttributeException extends InputModuleException
-{
-    public InputModuleAttributeException(String message)
-    {
-        super(message, null);
-    }
-
-    public InputModuleAttributeException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.components.modules.input;
+
+public final class InputModuleAttributeException extends InputModuleException
+{
+    public InputModuleAttributeException(String message)
+    {
+        super(message, null);
+    }
+
+    public InputModuleAttributeException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleAttributeException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleDestructionException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleDestructionException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleDestructionException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleDestructionException.java Fri Sep 30 02:49:29 2005
@@ -1,29 +1,29 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.components.modules.input;
-
-public final class InputModuleDestructionException extends InputModuleException
-{
-    public InputModuleDestructionException(String message)
-    {
-        super(message, null);
-    }
-
-    public InputModuleDestructionException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.components.modules.input;
+
+public final class InputModuleDestructionException extends InputModuleException
+{
+    public InputModuleDestructionException(String message)
+    {
+        super(message, null);
+    }
+
+    public InputModuleDestructionException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleDestructionException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleException.java Fri Sep 30 02:49:29 2005
@@ -1,31 +1,31 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.components.modules.input;
-
-import org.apache.avalon.framework.CascadingRuntimeException;
-
-public class InputModuleException extends CascadingRuntimeException
-{
-    public InputModuleException(String message)
-    {
-        super(message, null);
-    }
-
-    public InputModuleException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.components.modules.input;
+
+import org.apache.avalon.framework.CascadingRuntimeException;
+
+public class InputModuleException extends CascadingRuntimeException
+{
+    public InputModuleException(String message)
+    {
+        super(message, null);
+    }
+
+    public InputModuleException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleInitializationException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleInitializationException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleInitializationException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleInitializationException.java Fri Sep 30 02:49:29 2005
@@ -1,29 +1,29 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.components.modules.input;
-
-public final class InputModuleInitializationException extends InputModuleException
-{
-    public InputModuleInitializationException(String message)
-    {
-        super(message, null);
-    }
-
-    public InputModuleInitializationException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.components.modules.input;
+
+public final class InputModuleInitializationException extends InputModuleException
+{
+    public InputModuleInitializationException(String message)
+    {
+        super(message, null);
+    }
+
+    public InputModuleInitializationException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleInitializationException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleNotFoundException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleNotFoundException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleNotFoundException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleNotFoundException.java Fri Sep 30 02:49:29 2005
@@ -1,29 +1,29 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.components.modules.input;
-
-public final class InputModuleNotFoundException extends InputModuleException
-{
-    public InputModuleNotFoundException(String message)
-    {
-        super(message, null);
-    }
-
-    public InputModuleNotFoundException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.components.modules.input;
+
+public final class InputModuleNotFoundException extends InputModuleException
+{
+    public InputModuleNotFoundException(String message)
+    {
+        super(message, null);
+    }
+
+    public InputModuleNotFoundException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/InputModuleNotFoundException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/components/sax/DocumentLocatorException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/sax/DocumentLocatorException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/sax/DocumentLocatorException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/sax/DocumentLocatorException.java Fri Sep 30 02:49:29 2005
@@ -1,31 +1,31 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.components.sax;
-
-import org.apache.avalon.framework.CascadingRuntimeException;
-
-public final class DocumentLocatorException extends CascadingRuntimeException
-{
-    public DocumentLocatorException(String message)
-    {
-        super(message, null);
-    }
-
-    public DocumentLocatorException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.components.sax;
+
+import org.apache.avalon.framework.CascadingRuntimeException;
+
+public final class DocumentLocatorException extends CascadingRuntimeException
+{
+    public DocumentLocatorException(String message)
+    {
+        super(message, null);
+    }
+
+    public DocumentLocatorException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/components/sax/DocumentLocatorException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/components/source/SourceFactoryNotFoundException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/source/SourceFactoryNotFoundException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/source/SourceFactoryNotFoundException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/source/SourceFactoryNotFoundException.java Fri Sep 30 02:49:29 2005
@@ -1,31 +1,31 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.components.source;
-
-import org.apache.avalon.framework.CascadingRuntimeException;
-
-public final class SourceFactoryNotFoundException extends CascadingRuntimeException
-{
-    public SourceFactoryNotFoundException(String message)
-    {
-        super(message, null);
-    }
-
-    public SourceFactoryNotFoundException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.components.source;
+
+import org.apache.avalon.framework.CascadingRuntimeException;
+
+public final class SourceFactoryNotFoundException extends CascadingRuntimeException
+{
+    public SourceFactoryNotFoundException(String message)
+    {
+        super(message, null);
+    }
+
+    public SourceFactoryNotFoundException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/components/source/SourceFactoryNotFoundException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/core/CoreException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/core/CoreException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/core/CoreException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/core/CoreException.java Fri Sep 30 02:49:29 2005
@@ -1,31 +1,31 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.core;
-
-import org.apache.avalon.framework.CascadingRuntimeException;
-
-public class CoreException extends CascadingRuntimeException
-{
-    public CoreException(String message)
-    {
-        super(message, null);
-    }
-
-    public CoreException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.core;
+
+import org.apache.avalon.framework.CascadingRuntimeException;
+
+public class CoreException extends CascadingRuntimeException
+{
+    public CoreException(String message)
+    {
+        super(message, null);
+    }
+
+    public CoreException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/core/CoreException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/core/CoreFatalException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/core/CoreFatalException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/core/CoreFatalException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/core/CoreFatalException.java Fri Sep 30 02:49:29 2005
@@ -1,29 +1,29 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.core;
-
-public final class CoreFatalException extends CoreException
-{
-    public CoreFatalException(String message)
-    {
-        super(message, null);
-    }
-
-    public CoreFatalException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.core;
+
+public final class CoreFatalException extends CoreException
+{
+    public CoreFatalException(String message)
+    {
+        super(message, null);
+    }
+
+    public CoreFatalException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/core/CoreFatalException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/core/CoreInitializationException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/core/CoreInitializationException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/core/CoreInitializationException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/core/CoreInitializationException.java Fri Sep 30 02:49:29 2005
@@ -1,29 +1,29 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.core;
-
-public final class CoreInitializationException extends CoreException
-{
-    public CoreInitializationException(String message)
-    {
-        super(message, null);
-    }
-
-    public CoreInitializationException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.core;
+
+public final class CoreInitializationException extends CoreException
+{
+    public CoreInitializationException(String message)
+    {
+        super(message, null);
+    }
+
+    public CoreInitializationException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/core/CoreInitializationException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/core/CoreResourceNotFoundException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/core/CoreResourceNotFoundException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/core/CoreResourceNotFoundException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/core/CoreResourceNotFoundException.java Fri Sep 30 02:49:29 2005
@@ -1,31 +1,31 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.core;
-
-import org.apache.avalon.framework.CascadingRuntimeException;
-
-public final class CoreResourceNotFoundException extends CoreException
-{
-    public CoreResourceNotFoundException(String message)
-    {
-        super(message, null);
-    }
-
-    public CoreResourceNotFoundException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.core;
+
+import org.apache.avalon.framework.CascadingRuntimeException;
+
+public final class CoreResourceNotFoundException extends CoreException
+{
+    public CoreResourceNotFoundException(String message)
+    {
+        super(message, null);
+    }
+
+    public CoreResourceNotFoundException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/core/CoreResourceNotFoundException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/src/java/org/apache/cocoon/core/osgi/CoreOSGIServiceException.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/core/osgi/CoreOSGIServiceException.java?rev=292687&r1=292686&r2=292687&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/core/osgi/CoreOSGIServiceException.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/core/osgi/CoreOSGIServiceException.java Fri Sep 30 02:49:29 2005
@@ -1,31 +1,31 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- *
- * 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.
- */
-package org.apache.cocoon.core.osgi;
-
-import org.apache.cocoon.core.CoreException;
-
-public final class CoreOSGIServiceException extends CoreException
-{
-    public CoreOSGIServiceException(String message)
-    {
-        super(message, null);
-    }
-
-    public CoreOSGIServiceException(String message, Throwable cause)
-    {
-        super(message, cause);
-    }
-}
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ *
+ * 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.
+ */
+package org.apache.cocoon.core.osgi;
+
+import org.apache.cocoon.core.CoreException;
+
+public final class CoreOSGIServiceException extends CoreException
+{
+    public CoreOSGIServiceException(String message)
+    {
+        super(message, null);
+    }
+
+    public CoreOSGIServiceException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+}

Propchange: cocoon/trunk/src/java/org/apache/cocoon/core/osgi/CoreOSGIServiceException.java
------------------------------------------------------------------------------
    svn:eol-style = native