< prev index next >

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

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package java.lang.invoke;
  25 
  26 /**
  27  * StringConcatException is thrown by {@link StringConcatFactory} when linkage
  28  * invariants are violated.


  29  */
  30 public class StringConcatException extends Exception {
  31     private static final long serialVersionUID = 292L + 9L;
  32 
  33     /**
  34      * Constructs an exception with a message
  35      * @param msg exception message


  36      */
  37     public StringConcatException(String msg) {
  38         super(msg);
  39     }
  40 
  41     /**
  42      * Constructs an exception with a message and a linked throwable
  43      * @param msg   exception message
  44      * @param cause throwable cause


  45      */
  46     public StringConcatException(String msg, Throwable cause) {
  47         super(msg, cause);
  48     }
  49 }


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package java.lang.invoke;
  25 
  26 /**
  27  * StringConcatException is thrown by {@link StringConcatFactory} when linkage
  28  * invariants are violated.
  29  *
  30  * @since 9
  31  */
  32 public class StringConcatException extends Exception {
  33     private static final long serialVersionUID = 292L + 9L;
  34 
  35     /**
  36      * Constructs an exception with a message
  37      * @param msg exception message
  38      *
  39      * @since 9
  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      * @since 9
  51      */
  52     public StringConcatException(String msg, Throwable cause) {
  53         super(msg, cause);
  54     }
  55 }
< prev index next >