Search:

Type: Posts; User: dpjmie

Search: Search took 0.31 seconds.

  1. Replies
    8
    Views
    1,536

    Re: Loop & custom exception error Please help

    OMG, you are an absolute legend, thank you so much, i sincerely appreciate it

    Im such an idiot....

    Thanks again
    Dave
  2. Replies
    8
    Views
    1,536

    Re: Loop & custom exception error Please help

    Hi sorry about this, still not solved, here is the method with the suggested fix
    public static void irishWordExist(String input) throws WordDoesntExistException
    {
    boolean error = false;...
  3. Replies
    8
    Views
    1,536

    Re: Loop & custom exception error Please help

    public static void irishWordExist(String input) throws WordDoesntExistException
    {
    boolean error = false;
    for (int x=0; x<irishWords.length; x++)
    {
    if...
  4. Replies
    8
    Views
    1,536

    Re: Loop & custom exception error Please help

    I have tried that, and still it throws the error, im now loosing my patience
  5. Replies
    8
    Views
    1,536

    Loop & custom exception error Please help

    Below is a method i am using which contains a for loop. it loops through the words in the array and if the input doesnt match one of the strings in the array, it throws an exception, well thats the...
Results 1 to 5 of 5