Searched refs:CloneNotSupportedException (Results 1 - 25 of 240) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/java/lang/
H A DCloneNotSupportedException.java45 class CloneNotSupportedException extends Exception { class in inherits:Exception
49 * Constructs a <code>CloneNotSupportedException</code> with no
52 public CloneNotSupportedException() { method in class:CloneNotSupportedException
57 * Constructs a <code>CloneNotSupportedException</code> with the
62 public CloneNotSupportedException(String s) { method in class:CloneNotSupportedException
H A DObject.java190 * {@code CloneNotSupportedException} is thrown. Note that all arrays
206 * @exception CloneNotSupportedException if the object's class does not
213 protected native Object clone() throws CloneNotSupportedException;
H A DEnum.java156 * Throws CloneNotSupportedException. This guarantees that enums
162 protected final Object clone() throws CloneNotSupportedException {
163 throw new CloneNotSupportedException();
/openjdk7/jdk/src/share/classes/java/awt/
H A DImageCapabilities.java75 } catch (CloneNotSupportedException e) {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DContextNodeList.java108 * @throws CloneNotSupportedException
110 public NodeIterator cloneWithReset() throws CloneNotSupportedException;
119 * @throws CloneNotSupportedException
121 public Object clone() throws CloneNotSupportedException;
H A DOneStepIterator.java135 * @throws CloneNotSupportedException
137 public Object clone() throws CloneNotSupportedException
156 * @throws CloneNotSupportedException
158 public DTMIterator cloneWithReset() throws CloneNotSupportedException
226 catch (CloneNotSupportedException cnse)
283 catch (CloneNotSupportedException cnse)
/openjdk7/langtools/test/tools/javac/
H A DCloneableProblem.java36 public Object clone() throws CloneNotSupportedException;
60 catch (CloneNotSupportedException cnse)
77 catch (CloneNotSupportedException cnse)
H A DObject1.java38 protected native Object clone() throws CloneNotSupportedException;
H A DObject2.java38 public native Object clone() throws CloneNotSupportedException;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMIterator.java315 * @throws CloneNotSupportedException
317 public DTMIterator cloneWithReset() throws CloneNotSupportedException;
325 * @throws CloneNotSupportedException
327 public Object clone() throws CloneNotSupportedException;
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DDimension2D.java109 } catch (CloneNotSupportedException e) {
/openjdk7/langtools/test/tools/javac/generics/
H A DCasting2.java38 public static <E extends Enum<E>> Casting2<E> copyOf(Collection<E> s) throws CloneNotSupportedException {
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DServerCloneException.java47 public class ServerCloneException extends CloneNotSupportedException {
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPKIXCertPathChecker.java176 } catch (CloneNotSupportedException e) {
H A DCollectionCertStoreParameters.java123 } catch (CloneNotSupportedException e) {
H A DLDAPCertStoreParameters.java129 } catch (CloneNotSupportedException e) {
H A DPKIXCertPathValidatorResult.java137 } catch (CloneNotSupportedException e) {
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstant.java114 } catch(CloneNotSupportedException e) {}
119 public Object clone() throws CloneNotSupportedException {
/openjdk7/jdk/src/share/classes/java/security/
H A DMessageDigestSpi.java196 * @exception CloneNotSupportedException if this is called on an
199 public Object clone() throws CloneNotSupportedException {
203 throw new CloneNotSupportedException();
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DMacSpi.java143 * @exception CloneNotSupportedException if this is called
146 public Object clone() throws CloneNotSupportedException {
150 throw new CloneNotSupportedException();
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DHmacCore.java78 private HmacCore(HmacCore other) throws CloneNotSupportedException {
236 public Object clone() throws CloneNotSupportedException {
246 private HmacSHA256(HmacSHA256 base) throws CloneNotSupportedException {
271 public Object clone() throws CloneNotSupportedException {
282 private HmacSHA384(HmacSHA384 base) throws CloneNotSupportedException {
307 public Object clone() throws CloneNotSupportedException {
318 private HmacSHA512(HmacSHA512 base) throws CloneNotSupportedException {
343 public Object clone() throws CloneNotSupportedException {
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DBoolStack.java199 throws CloneNotSupportedException
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DEditorKit.java67 } catch (CloneNotSupportedException cnse) {
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DKernel.java148 } catch (CloneNotSupportedException e) {
/openjdk7/jdk/src/share/classes/java/awt/print/
H A DPaper.java113 } catch (CloneNotSupportedException e) {

Completed in 72 milliseconds

12345678910