Author: dkulp
Date: Wed Oct 26 15:44:29 2011
New Revision: 1189274
URL: http://svn.apache.org/viewvc?rev=1189274&view=rev
Log:
[CXF-3879] Add file I forgot to add
Added:
cxf/trunk/api/src/main/java/org/apache/cxf/io/CacheSizeExceededException.java
(with props)
Added:
cxf/trunk/api/src/main/java/org/apache/cxf/io/CacheSizeExceededException.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/api/src/main/java/org/apache/cxf/io/CacheSizeExceededException.java?rev=1189274&view=auto
==============================================================================
---
cxf/trunk/api/src/main/java/org/apache/cxf/io/CacheSizeExceededException.java
(added)
+++
cxf/trunk/api/src/main/java/org/apache/cxf/io/CacheSizeExceededException.java
Wed Oct 26 15:44:29 2011
@@ -0,0 +1,38 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.cxf.io;
+
+public class CacheSizeExceededException extends RuntimeException {
+ public CacheSizeExceededException() {
+ super();
+ }
+
+ public CacheSizeExceededException(String message) {
+ super(message);
+ }
+
+ public CacheSizeExceededException(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+ public CacheSizeExceededException(Throwable cause) {
+ super(cause);
+ }
+}
Propchange:
cxf/trunk/api/src/main/java/org/apache/cxf/io/CacheSizeExceededException.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/trunk/api/src/main/java/org/apache/cxf/io/CacheSizeExceededException.java
------------------------------------------------------------------------------
svn:keywords = Rev Date