< prev index next >

src/java.base/share/classes/java/lang/invoke/StringConcatException.java

Print this page




  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.lang.invoke;
  27 
  28 /**
  29  * StringConcatException is thrown by {@link StringConcatFactory} when linkage
  30  * invariants are violated.
  31  *
  32  * @since 9
  33  */
  34 public class StringConcatException extends Exception {

  35     private static final long serialVersionUID = 292L + 9L;
  36 
  37     /**
  38      * Constructs an exception with a message
  39      * @param msg exception message
  40      */
  41     public StringConcatException(String msg) {
  42         super(msg);
  43     }
  44 
  45     /**
  46      * Constructs an exception with a message and a linked throwable
  47      * @param msg   exception message
  48      * @param cause throwable cause
  49      */
  50     public StringConcatException(String msg, Throwable cause) {
  51         super(msg, cause);
  52     }
  53 }


  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.lang.invoke;
  27 
  28 /**
  29  * StringConcatException is thrown by {@link StringConcatFactory} when linkage
  30  * invariants are violated.
  31  *
  32  * @since 9
  33  */
  34 public class StringConcatException extends Exception {
  35     @java.io.Serial
  36     private static final long serialVersionUID = 292L + 9L;
  37 
  38     /**
  39      * Constructs an exception with a message
  40      * @param msg exception message
  41      */
  42     public StringConcatException(String msg) {
  43         super(msg);
  44     }
  45 
  46     /**
  47      * Constructs an exception with a message and a linked throwable
  48      * @param msg   exception message
  49      * @param cause throwable cause
  50      */
  51     public StringConcatException(String msg, Throwable cause) {
  52         super(msg, cause);
  53     }
  54 }
< prev index next >