<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Technical Notes&#187; Java Error Handling</title>
	<atom:link href="http://technotes.towardsjob.com/tag/java-error-handling/feed/" rel="self" type="application/rss+xml" />
	<link>http://technotes.towardsjob.com</link>
	<description>Technical Notes about Oracle, DotNet, Java, SQL Server, XML and UNIX</description>
	<lastBuildDate>Tue, 18 May 2010 01:45:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mistyping the name of a method when overriding</title>
		<link>http://technotes.towardsjob.com/java/mistyping-the-name-of-a-method-when-overriding/</link>
		<comments>http://technotes.towardsjob.com/java/mistyping-the-name-of-a-method-when-overriding/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 07:36:00 +0000</pubDate>
		<dc:creator>Tech Guy</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Error Handling]]></category>
		<category><![CDATA[Java Overriding Method Name]]></category>

		<guid isPermaLink="false">http://technotes.towardsjob.com/java/mistyping-the-name-of-a-method-when-overriding/</guid>
		<description><![CDATA[Overriding allows programmers to replace a method&#8217;s implementation with new code. Overriding is a handy feature, and most OO programmers make heavy use of it. If you use the AWT 1.1 event handling model, you&#8217;ll often override listener implementations to provide custom functionality. One easy trap to fall into with overriding, is to mistype the [...]


Related posts:<ol><li><a href='http://technotes.towardsjob.com/java/capitalization-errors-while-java-programming/' rel='bookmark' title='Permanent Link: Capitalization Errors while Java Programming'>Capitalization Errors while Java Programming</a> <small>This is one of the most frequent errors that we all make. It&#8217;s so simple to do, and sometimes one can look at an uncapitalized variable or method and still not spot the problem. I myself have often been puzzled by these errors, because I recognize that the method or...</small></li>
<li><a href='http://technotes.towardsjob.com/oracle/oracle-pl-sql-loops-conditional-statements/' rel='bookmark' title='Permanent Link: Oracle PL/SQL: Loops and Conditional Statements'>Oracle PL/SQL: Loops and Conditional Statements</a> <small>This article contains tutorial about Oracle PL/SQL Loops and Conditional Statements. Following topics are discused here IF-THEN-ELSE Statement, Case Statement, GOTO Statement, Loop Statement, FOR Loop, CURSOR FOR Loop, While Loop, Repeat Until Loop and Exit Statement...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://technotes.towardsjob.com/java/mistyping-the-name-of-a-method-when-overriding/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java Programming Best Practice Writing blank exception handlers</title>
		<link>http://technotes.towardsjob.com/java/java-programming-best-practice-writing-blank-exception-handlers/</link>
		<comments>http://technotes.towardsjob.com/java/java-programming-best-practice-writing-blank-exception-handlers/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 16:30:17 +0000</pubDate>
		<dc:creator>Tech Guy</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[java coding best practice]]></category>
		<category><![CDATA[Java Error Handling]]></category>
		<category><![CDATA[java exception handling]]></category>

		<guid isPermaLink="false">http://technotes.towardsjob.com/java/java-programming-best-practice-writing-blank-exception-handlers/</guid>
		<description><![CDATA[I know it&#8217;s very tempting to write blank exception handlers, and to just ignore errors. But if you run into problems, and haven&#8217;t written any error messages, it becomes almost impossible to find out the cause of the error. Even the simplest exception handler can be of benefit. For example, put a try { .. [...]


Related posts:<ol><li><a href='http://technotes.towardsjob.com/java/java-class-for-sending-email-using-java-api/' rel='bookmark' title='Permanent Link: Java Class for Sending Email using Java API'>Java Class for Sending Email using Java API</a> <small>Introduction This is a java class file for sending mails using java APIs. It requires two jar files to be set in the class path. Also Java J2SDK is required to compile or run this code. A valid SMTP server ip is required and that should be authenticated by a...</small></li>
<li><a href='http://technotes.towardsjob.com/java/preventing-concurrent-access-to-shared-variables-by-threads-in-java-programming/' rel='bookmark' title='Permanent Link: Preventing concurrent access to shared variables by threads in Java Programming'>Preventing concurrent access to shared variables by threads in Java Programming</a> <small>When writing multi-threaded applications, many programmers (myself included) often cut corners, and leave their applications and applets vulnerable to thread conflicts. When two or more threads access the same data concurrently, there exists the possibility (and Murphy&#8217;s law holding, the probability) that two threads will access or modify the same...</small></li>
<li><a href='http://technotes.towardsjob.com/java/capitalization-errors-while-java-programming/' rel='bookmark' title='Permanent Link: Capitalization Errors while Java Programming'>Capitalization Errors while Java Programming</a> <small>This is one of the most frequent errors that we all make. It&#8217;s so simple to do, and sometimes one can look at an uncapitalized variable or method and still not spot the problem. I myself have often been puzzled by these errors, because I recognize that the method or...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://technotes.towardsjob.com/java/java-programming-best-practice-writing-blank-exception-handlers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Developers Forgetting that Java is zero-indexed</title>
		<link>http://technotes.towardsjob.com/java/java-developers-forgetting-that-java-is-zero-indexed/</link>
		<comments>http://technotes.towardsjob.com/java/java-developers-forgetting-that-java-is-zero-indexed/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 16:27:29 +0000</pubDate>
		<dc:creator>Tech Guy</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[java array index]]></category>
		<category><![CDATA[Java Error Handling]]></category>
		<category><![CDATA[zero indexed java]]></category>

		<guid isPermaLink="false">http://technotes.towardsjob.com/java/java-developers-forgetting-that-java-is-zero-indexed/</guid>
		<description><![CDATA[If you&#8217;ve come from a C/C++ background, you may not find this quite as much a problem as those who have used other languages. In Java, arrays are zero-indexed, meaning that the first element&#8217;s index is actually 0. Confused? Let&#8217;s look at a quick example.


// Create an array of three strings

String[] strArray = new String[3];

// [...]


Related posts:<ol><li><a href='http://technotes.towardsjob.com/java/java-class-for-sending-email-using-java-api/' rel='bookmark' title='Permanent Link: Java Class for Sending Email using Java API'>Java Class for Sending Email using Java API</a> <small>Introduction This is a java class file for sending mails using java APIs. It requires two jar files to be set in the class path. Also Java J2SDK is required to compile or run this code. A valid SMTP server ip is required and that should be authenticated by a...</small></li>
<li><a href='http://technotes.towardsjob.com/java/pass-by-value-and-pass-by-reference-in-java/' rel='bookmark' title='Permanent Link: Pass by Value and Pass by Reference in Java'>Pass by Value and Pass by Reference in Java</a> <small>This can be a frustrating problem to diagnose, because when you look at the code, you might be sure that its passing by reference, but find that its actually being passed by value. Java uses both, so you need to understand when you&#8217;re passing by value, and when you&#8217;re passing...</small></li>
<li><a href='http://technotes.towardsjob.com/oracle/inbuilt-functions-in-oracle/' rel='bookmark' title='Permanent Link: Inbuilt Functions in Oracle'>Inbuilt Functions in Oracle</a> <small>Character Functions in oracle String function plays important role in oracle as often it is required to convert the string or extract certain part of it. These functions accept column value or an expression as the input. ASCII This function is used to get the ASCII value of a character....</small></li>
</ol>]]></description>
		<wfw:commentRss>http://technotes.towardsjob.com/java/java-developers-forgetting-that-java-is-zero-indexed/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Capitalization Errors while Java Programming</title>
		<link>http://technotes.towardsjob.com/java/capitalization-errors-while-java-programming/</link>
		<comments>http://technotes.towardsjob.com/java/capitalization-errors-while-java-programming/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 14:20:13 +0000</pubDate>
		<dc:creator>Tech Guy</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Capitalization Errors in Java]]></category>
		<category><![CDATA[Java Error Handling]]></category>
		<category><![CDATA[Java Variable Declaration Standard]]></category>

		<guid isPermaLink="false">http://technotes.towardsjob.com/java/capitalization-errors-while-java-programming/</guid>
		<description><![CDATA[This is one of the most frequent errors that we all make. It&#8217;s so simple to do, and sometimes one can look at an uncapitalized variable or method and still not spot the problem. I myself have often been puzzled by these errors, because I recognize that the method or variable does exist, but don&#8217;t [...]


Related posts:<ol><li><a href='http://technotes.towardsjob.com/java/preventing-concurrent-access-to-shared-variables-by-threads-in-java-programming/' rel='bookmark' title='Permanent Link: Preventing concurrent access to shared variables by threads in Java Programming'>Preventing concurrent access to shared variables by threads in Java Programming</a> <small>When writing multi-threaded applications, many programmers (myself included) often cut corners, and leave their applications and applets vulnerable to thread conflicts. When two or more threads access the same data concurrently, there exists the possibility (and Murphy&#8217;s law holding, the probability) that two threads will access or modify the same...</small></li>
<li><a href='http://technotes.towardsjob.com/java/javaj2ee-interview-questions-answers/' rel='bookmark' title='Permanent Link: Java/J2EE Interview Questions &amp; Answers'>Java/J2EE Interview Questions &amp; Answers</a> <small>Core Java Interview Questions Q: What is the difference between an interface and an abstract class? A: An abstract class can have instance methods that implement a default behavior.&#160; An interface can only declare constants and instance methods, but cannot implement default behavior.&#160; An class is abstract if it is...</small></li>
<li><a href='http://technotes.towardsjob.com/java/pass-by-value-and-pass-by-reference-in-java/' rel='bookmark' title='Permanent Link: Pass by Value and Pass by Reference in Java'>Pass by Value and Pass by Reference in Java</a> <small>This can be a frustrating problem to diagnose, because when you look at the code, you might be sure that its passing by reference, but find that its actually being passed by value. Java uses both, so you need to understand when you&#8217;re passing by value, and when you&#8217;re passing...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://technotes.towardsjob.com/java/capitalization-errors-while-java-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to avoid Null pointers Error while coding Java programs</title>
		<link>http://technotes.towardsjob.com/java/how-to-avoid-null-pointers-error-while-coding-java-programs/</link>
		<comments>http://technotes.towardsjob.com/java/how-to-avoid-null-pointers-error-while-coding-java-programs/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 13:24:53 +0000</pubDate>
		<dc:creator>Tech Guy</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Error Handling]]></category>
		<category><![CDATA[Java NullPointerException]]></category>
		<category><![CDATA[Null Pointer Exception]]></category>

		<guid isPermaLink="false">http://technotes.towardsjob.com/java/how-to-avoid-null-pointers-error-while-coding-java-programs/</guid>
		<description><![CDATA[Null pointers are one of the most common errors that Java programmers make. Compilers can&#8217;t check this one for you &#8211; it will only surface at runtime, and if you don&#8217;t discover it, your users certainly will. 
When an attempt to access an object is made, and the reference to that object is null, a [...]


Related posts:<ol><li><a href='http://technotes.towardsjob.com/java/pass-by-value-and-pass-by-reference-in-java/' rel='bookmark' title='Permanent Link: Pass by Value and Pass by Reference in Java'>Pass by Value and Pass by Reference in Java</a> <small>This can be a frustrating problem to diagnose, because when you look at the code, you might be sure that its passing by reference, but find that its actually being passed by value. Java uses both, so you need to understand when you&#8217;re passing by value, and when you&#8217;re passing...</small></li>
<li><a href='http://technotes.towardsjob.com/oracle/oracle-pl-sql-is-null-is-not-null/' rel='bookmark' title='Permanent Link: Oracle PL/SQL: Is Null / Is Not Null'>Oracle PL/SQL: Is Null / Is Not Null</a> <small>In other languages, a null value is found using the = null syntax. However in PLSQL to check if a value is null, you must use the &quot;IS NULL&quot; syntax. To check for equality on a null value, you must use &quot;IS NULL&quot;. For example, IF Lvalue IS NULL then...</small></li>
<li><a href='http://technotes.towardsjob.com/java/java-class-for-sending-email-using-java-api/' rel='bookmark' title='Permanent Link: Java Class for Sending Email using Java API'>Java Class for Sending Email using Java API</a> <small>Introduction This is a java class file for sending mails using java APIs. It requires two jar files to be set in the class path. Also Java J2SDK is required to compile or run this code. A valid SMTP server ip is required and that should be authenticated by a...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://technotes.towardsjob.com/java/how-to-avoid-null-pointers-error-while-coding-java-programs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>