Stay organized with collections
Save and categorize content based on your preferences.
CloneNotSupportedException
open class CloneNotSupportedException : Exception
Thrown to indicate that the clone
method in class Object
has been called to clone an object, but that the object's class does not implement the Cloneable
interface.
Applications that override the clone
method can also throw this exception to indicate that an object could not or should not be cloned.
Summary
Public constructors |
Constructs a CloneNotSupportedException with no detail message.
|
Constructs a CloneNotSupportedException with the specified detail message.
|
Public constructors
CloneNotSupportedException
CloneNotSupportedException()
Constructs a CloneNotSupportedException
with no detail message.
CloneNotSupportedException
CloneNotSupportedException(s: String!)
Constructs a CloneNotSupportedException
with the specified detail message.
Parameters |
s |
String!: the detail message. |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[null,null,["Last updated 2025-02-10 UTC."],[],[],null,["# CloneNotSupportedException\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nCloneNotSupportedException\n==========================\n\n```\nopen class CloneNotSupportedException : Exception\n```\n\n|---|---|---|-------------------------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) ||||\n| ↳ | [kotlin.Throwable](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html) |||\n| | ↳ | [java.lang.Exception](/reference/kotlin/java/lang/Exception) ||\n| | | ↳ | [java.lang.CloneNotSupportedException](#) |\n\nThrown to indicate that the `clone` method in class `Object` has been called to clone an object, but that the object's class does not implement the `Cloneable` interface.\n\nApplications that override the `clone` method can also throw this exception to indicate that an object could not or should not be cloned.\n\nSummary\n-------\n\n| Public constructors ||\n|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|\n| [CloneNotSupportedException](#CloneNotSupportedException())`()` Constructs a `CloneNotSupportedException` with no detail message. |\n| [CloneNotSupportedException](#CloneNotSupportedException(kotlin.String))`(`s:` `[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!`)` Constructs a `CloneNotSupportedException` with the specified detail message. |\n\nPublic constructors\n-------------------\n\n### CloneNotSupportedException\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nCloneNotSupportedException()\n```\n\nConstructs a `CloneNotSupportedException` with no detail message. \n\n### CloneNotSupportedException\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nCloneNotSupportedException(s: String!)\n```\n\nConstructs a `CloneNotSupportedException` with the specified detail message.\n\n| Parameters ||\n|-----|--------------------------------------------------------------------------------------------------------|\n| `s` | [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!: the detail message. |"]]