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 6330239
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T17:50:05+00:00 2026-05-24T17:50:05+00:00

I am really confused on why I am getting following compilation error. Microsoft Visual

  • 0

I am really confused on why I am getting following compilation error.
Microsoft Visual Studio Compiler.

error C2678: binary '=' : no operator found which takes a left-hand operand of type 'const std::string' (or there is no acceptable conversion)

#include <stdio.h>
#include <iostream>
#include <sstream>
#include <iterator>

class MyException {
public:
    MyException(    std::string message, 
                        int line = 0) : m_message(message),
                                        m_line(line) {}
    const char* what() const throw(){
        if ( m_line != 0 ) {
            std::ostringstream custom_message;
            custom_message << "Parsing Error occured at ";
            custom_message << m_line << " Line : ";
            custom_message << m_message;        
            m_message = custom_message.str();
        }
        return m_message.c_str();
    }
private:
    std::string m_message;
    int m_line;
};
int main(int argc, char **argv) {
    try {
        // do something
    }catch(MyException &e){
        std::cout << e.what();
    }
}

Error is coming at line
m_message = custom_message.str();

  • 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-05-24T17:50:06+00:00Added an answer on May 24, 2026 at 5:50 pm

    You declare the method as const

    const char* what() const throw(){
    

    but then you try to change the object

    m_message = custom_message.str();
    

    so you get an error.

    What you should do instead is construct the custom message in the constructor.

    class MyException {
    public:
        MyException(const std::string& message, int line = 0) : 
            m_message(message), m_line(line) {
            if ( m_line != 0 ) {
                std::ostringstream custom_message;
                custom_message << "Parsing Error occured at ";
                custom_message << m_line << " Line : ";
                custom_message << m_message;        
                m_message = custom_message.str();
            }
        }
        const char* what() const throw(){
            return m_message.c_str();
        }
    private:
        std::string m_message;
        int m_line;
    };
    

    Also I changed your code to pass the std::string by reference, which is usual practice.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am really confused now on how and which method to use to return
I am getting the following Compiler Warning: 'Resources.Foo.GetType()' hides inherited member 'object.GetType()'. Use the
I'm really getting confused by how many different ways there is to write data
I am getting really confused about OOD when designing relatively large system. Always, we
I'm really confused by some errors I'm getting as I'm trying to put an
getting really confused here now after googling for the last 40 mins. I need
I am really getting confused on how pointers work. I am trying to write
So I'm getting really confused on how to do this whole thing and I
I am using Entity Framwwork and Code First and getting really confused. I have
I am really confused about object relationships! I have two classes Person and Address.

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.