You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.0 KiB
57 lines
1.0 KiB
/*
|
|
* Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang.reflect;
|
|
|
|
|
|
/**
|
|
* Thrown when a syntactically malformed signature attribute is
|
|
* encountered by a reflective method that needs to interpret the
|
|
* generic signature information for a type, method or constructor.
|
|
*
|
|
* @since 1.5
|
|
*/
|
|
public class GenericSignatureFormatError extends ClassFormatError {
|
|
private static final long serialVersionUID = 6709919147137911034L;
|
|
|
|
/**
|
|
* Constructs a new {@code GenericSignatureFormatError}.
|
|
*
|
|
*/
|
|
public GenericSignatureFormatError() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructs a new {@code GenericSignatureFormatError} with the
|
|
* specified message.
|
|
*
|
|
* @param message the detail message, may be {@code null}
|
|
*/
|
|
public GenericSignatureFormatError(String message) {
|
|
super(message);
|
|
}
|
|
}
|