• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Working on a Sample Program

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Howdy!..I'm working on sample programs so that I can get the hang of this here Java... so far I've been doing ok.. but I ran into a little issue..can someone explain it to me?
My program was built successfully but what I got was the below:

Exception in thread "main" java.lang.UnsupportedOperationException: Not yet implemented
at ch3circle4.DecimalFormat.<init>(DecimalFormat.java:15)
at ch3circle4.Main.main(Main.java:27)
Java Result: 1


what does UnsupportedOperationException: Not yet implemented mean?
 
author
Posts: 23951
142
jQuery Eclipse IDE Firefox Browser VI Editor C++ Chrome Java Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

what does UnsupportedOperationException: Not yet implemented mean?



Well, it is your code. You should tell us what does it mean.



The exception is thrown from the constructor of a class named "DecimalFormat", which is located in a package named "ch3circle4". I am assuming that this is a class that you wrote, or got from somewhere.

Henry
 
Alex Hutchinson
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm learning how to run programs, this one in particular is from my text chapter. So far I thought I was doing all that I was suppose to do. But I came up with the issue in question
 
Ranch Hand
Posts: 378
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Howdy Alex!

What Henry is probably trying to say is that the class DecimalFormat that you are using is not part of standard java but some customized class.
It looks like the constructor has not been implemented and throwing the exception.
 
Marshal
Posts: 79177
377
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It probably means it was created on NetBeans which seems to write "throw new UnsupportedOperationException("Not implemented yet");" in every new method. You are supposed to delete that when you implement the method.
 
Alex Hutchinson
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
GREAT!!...I do believe you are correct b/c I ran another program and I received the same messages. However, the build was successful..

Thanks much
 
No one can make you feel inferior without your consent - Eleanor Roosevelt. tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic