Happy Codings - Programming Code Examples
Html Css Web Design Sample Codes CPlusPlus Programming Sample Codes JavaScript Programming Sample Codes C Programming Sample Codes CSharp Programming Sample Codes Java Programming Sample Codes Php Programming Sample Codes Visual Basic Programming Sample Codes


Java Programming Code Examples

Java > Learning Code Examples

Pie exception

Pie exception package com.ack.learning.exceptions; // define your own exception by extending java.lang.Exception public class PieException extends Exception { // let this exception accept a user message that can be // accessed through calling getMessage() that is defined // within its parent class public PieException( String msg ) { super( msg ); } }