aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/commons/lang3/exception/CloneFailedException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/commons/lang3/exception/CloneFailedException.java')
-rw-r--r--src/org/apache/commons/lang3/exception/CloneFailedException.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/org/apache/commons/lang3/exception/CloneFailedException.java b/src/org/apache/commons/lang3/exception/CloneFailedException.java
index 138b250..ae534b4 100644
--- a/src/org/apache/commons/lang3/exception/CloneFailedException.java
+++ b/src/org/apache/commons/lang3/exception/CloneFailedException.java
@@ -5,9 +5,9 @@
* 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.
@@ -19,7 +19,7 @@ package org.apache.commons.lang3.exception;
/**
* Exception thrown when a clone cannot be created. In contrast to
* {@link CloneNotSupportedException} this is a {@link RuntimeException}.
- *
+ *
* @since 3.0
*/
public class CloneFailedException extends RuntimeException {
@@ -31,7 +31,7 @@ public class CloneFailedException extends RuntimeException {
/**
* Constructs a CloneFailedException.
- *
+ *
* @param message description of the exception
* @since upcoming
*/
@@ -41,7 +41,7 @@ public class CloneFailedException extends RuntimeException {
/**
* Constructs a CloneFailedException.
- *
+ *
* @param cause cause of the exception
* @since upcoming
*/
@@ -51,7 +51,7 @@ public class CloneFailedException extends RuntimeException {
/**
* Constructs a CloneFailedException.
- *
+ *
* @param message description of the exception
* @param cause cause of the exception
* @since upcoming