<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Common Exceptions by Fiona Baxter</title>
      <link>https://padlet.com/fionabaxter/CommonExceptions</link>
      <description>Your overview</description>
      <language>en-us</language>
      <pubDate>2016-01-04 22:03:25 UTC</pubDate>
      <lastBuildDate>2025-10-16 16:24:31 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>NULL POINTER - MH</title>
         <author></author>
         <link>https://padlet.com/fionabaxter/CommonExceptions/wish/87683385</link>
         <description><![CDATA[<p>A NullPointerException in a RunTimeException that is caused when a user attempts to use an object with a null value.</p><p>In order to avoid this occurring  you could init (set the value to 0) or check that it is not a reference variable without value.</p>]]></description>
         <enclosure url="" />
         <pubDate>2016-01-05 09:51:09 UTC</pubDate>
         <guid>https://padlet.com/fionabaxter/CommonExceptions/wish/87683385</guid>
      </item>
      <item>
         <title>ClassNotFound - Pat</title>
         <author></author>
         <link>https://padlet.com/fionabaxter/CommonExceptions/wish/87683492</link>
         <description><![CDATA[<p>Class not found is where Java Virtual Machines tries to find a class that has been referenced later on into the code, and it isn't found. This could be an easy error to make. Example being if you called a class 'Example' but then later wanted to reference it as 'example'</p>]]></description>
         <enclosure url="" />
         <pubDate>2016-01-05 09:52:00 UTC</pubDate>
         <guid>https://padlet.com/fionabaxter/CommonExceptions/wish/87683492</guid>
      </item>
      <item>
         <title>ArrayIndexOutOfBounds - MN</title>
         <author></author>
         <link>https://padlet.com/fionabaxter/CommonExceptions/wish/87683627</link>
         <description><![CDATA[<p>When a call to an array index which doesn't exist. For example if an array has  a length of 2 and the program tries to get the third value.</p><p>This code would produce such an exception;</p><p>String[] arr = {"0", "1"};
String l = arr[2];<br></p><p>This error should be handled if there is a chance that a user or the program may try access an index of the array which may not be there.</p>]]></description>
         <enclosure url="" />
         <pubDate>2016-01-05 09:52:53 UTC</pubDate>
         <guid>https://padlet.com/fionabaxter/CommonExceptions/wish/87683627</guid>
      </item>
      <item>
         <title>Arithmetic</title>
         <author></author>
         <link>https://padlet.com/fionabaxter/CommonExceptions/wish/87683905</link>
         <description><![CDATA[<p>Thrown when an exceptional arithmetic condition has occurred. For example, an integer "divide by zero" throws an instance of this class.&nbsp;</p>]]></description>
         <enclosure url="" />
         <pubDate>2016-01-05 09:54:58 UTC</pubDate>
         <guid>https://padlet.com/fionabaxter/CommonExceptions/wish/87683905</guid>
      </item>
      <item>
         <title>NumberFormat PB</title>
         <author></author>
         <link>https://padlet.com/fionabaxter/CommonExceptions/wish/87684071</link>
         <description><![CDATA[<p><span style="font-size: 13px;">A Number Format Exception is when someone is trying to</span><br></p><p>convert a string into a number. So they will write out a string and the tell
the code to print out a value which will not be defined as it will be looking
for a string instead of a number.</p>]]></description>
         <enclosure url="" />
         <pubDate>2016-01-05 09:56:05 UTC</pubDate>
         <guid>https://padlet.com/fionabaxter/CommonExceptions/wish/87684071</guid>
      </item>
      <item>
         <title>IO Exceptions</title>
         <author></author>
         <link>https://padlet.com/fionabaxter/CommonExceptions/wish/87684086</link>
         <description><![CDATA[<p><span style="font-size: 13px;">An IO exception is and Input/Output exception. </span><br></p><p>Assume the scenarios as below:</p>
<p>1.&nbsp;You were reading network file and got disconnected.</p><p>2.&nbsp;Reading local file which is not available anymore.</p><p>3.&nbsp;Using some stream to read the data and some other process closes the stream.</p><p>4.&nbsp;You are trying to read/write a file and don't have permission</p><p>5.&nbsp;You were writing a file and disk space is not available anymore.</p><p>All these scenarios result into IOException.</p><p>You can catch specific errors in ‘catch’ blocks of code, but
there is a statement that catches all IOExceptions and returns a general
message.</p>]]></description>
         <enclosure url="" />
         <pubDate>2016-01-05 09:56:11 UTC</pubDate>
         <guid>https://padlet.com/fionabaxter/CommonExceptions/wish/87684086</guid>
      </item>
      <item>
         <title>Arithmetic</title>
         <author></author>
         <link>https://padlet.com/fionabaxter/CommonExceptions/wish/125016800</link>
         <description><![CDATA[<div>Thrown when an exceptional arithmetic condition has occurred. For example, an integer "divide by zero" throws an instance of this class.&nbsp;</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-09-20 11:07:49 UTC</pubDate>
         <guid>https://padlet.com/fionabaxter/CommonExceptions/wish/125016800</guid>
      </item>
      <item>
         <title>NumberFormat </title>
         <author></author>
         <link>https://padlet.com/fionabaxter/CommonExceptions/wish/125016813</link>
         <description><![CDATA[<div>A Number Format Exception is when someone is trying to convert a string into a number. So they will write out a string and the tell the code to print out a value which will not be defined as it will be looking for a string instead of a number.</div><div><br><br></div>]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/aws/132835531/2SGuWD6eYnCfac72YNOzUQ/41fe8a464df5e531afb8a3785b721dc2.jpg" />
         <pubDate>2016-09-20 11:07:53 UTC</pubDate>
         <guid>https://padlet.com/fionabaxter/CommonExceptions/wish/125016813</guid>
      </item>
      <item>
         <title>ArrayIndexOutOfBounds - JD</title>
         <author></author>
         <link>https://padlet.com/fionabaxter/CommonExceptions/wish/125016849</link>
         <description><![CDATA[<div>Thrown to indicate that an array has been accessed with an illegal index.&nbsp;<br>The index is either negative or greater than or equal to the size of the array.</div>]]></description>
         <enclosure url="" />
         <pubDate>2016-09-20 11:08:07 UTC</pubDate>
         <guid>https://padlet.com/fionabaxter/CommonExceptions/wish/125016849</guid>
      </item>
      <item>
         <title>IO Exception</title>
         <author></author>
         <link>https://padlet.com/fionabaxter/CommonExceptions/wish/125018239</link>
         <description><![CDATA[<div>Lily<br>IO Exception is a class of Exception that was raised due to all Input/Output contingencies. The file operations like read(), write() and close() etc. are OS dependent and are declared as native methods.<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2016-09-20 11:14:31 UTC</pubDate>
         <guid>https://padlet.com/fionabaxter/CommonExceptions/wish/125018239</guid>
      </item>
   </channel>
</rss>
