Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8505001
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T02:11:46+00:00 2026-06-11T02:11:46+00:00

i am trying to define a list of exception classes like so: private static

  • 0

i am trying to define a list of exception classes like so:

private static final List<Class<? extends Exception>> SOME_ERRORS = Arrays.asList(NumberFormatException.class, NullPointerException.class);

the error i get from Eclipse is this:

Type mismatch: cannot convert from List<Class<? extends RuntimeException>> to List<Class<? extends Exception>>

Could you please advise? I don’t see why it can’t convert a list of Exceptions to a list of Exceptions…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T02:11:48+00:00Added an answer on June 11, 2026 at 2:11 am

    +1 for Reimeus’s answer. However, if you’d prefer to keep the list declared using the parent Exception type, this is the best I can come up with (using Java 7 syntax):

    private static final List<Class<? extends Exception>> SOME_ERRORS = new ArrayList<>();
    static{
        SOME_ERRORS.add(NumberFormatException.class);
        SOME_ERRORS.add(NullPointerException.class);
    }
    

    Your issue is due to Arrays.asList automatically determining the proper list type for you. To compare, this also works without error:

    private static final List<Class<? extends Exception>> SOME_ERRORS = Arrays.asList(NumberFormatException.class, NullPointerException.class, Exception.class);
    

    Especially dealing with “constants” (static finals), you’re usually best advised to ensure that such arrays / collections can’t be modified. At worst, this can save running into some difficult issues. For example:

    private static final List<Class<? extends Exception>> SOME_ERRORS;
    static{
        List<Class< ? extends Exception>> errors = new ArrayList<>();
        errors.add(NumberFormatException.class);
        errors.add(NullPointerException.class);
    
        SOME_ERRORS = Collections.unmodifiableList(errors);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to define a very simple function in Drools as below: import java.util.List;
Im trying to define a select tag in my view. My view looks like
I am trying to define a number of classes based on an abstract base
I am trying to define an abstract class that has operators to compare two
I am trying to implement a sorted list. I have created the class I
I'm trying to define an exception in OCaml that accepts a tuple pair of
I am trying to list the order in which the Java class loader is
I'm trying to create a list that some of the elements are defined and
I'm trying to define a method in my vb.net interface that will only accept
I am trying to define a dynamic var in a different namespace. The Lobos

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.