sp_addmessage can be used to create a User-Defined Error Message
hi friends,  On Today Morning i go through with Custom Error Message in MSSql server.  for that i work around below step and it's done man.   i found one stored procedure "sp_addmessage" which used for adding my custome error message on server..     USE master  GO  EXEC sp_addmessage  50002,  10,  N'The data %s already exists!'  GO  RAISERROR (50002, 10, 1, 'MyText')    syntax for sp_addmessage is   sp_addmessage [ @msgnum= ] msg_id , [ @severity= ] severity , [ @msgtext= ] 'msg'       [ , [ @lang= ] 'language' ]       [ , [ @with_log= ] { 'TRUE' | 'FALSE' } ]       [ , [ @replace= ] 'replace' ]    [ @msgnum= ] msg_id  Is the ID of the message. msg_id is int with a default of NULL. msg_id for user-defined error messages can be an integer between 50,001 and 2,147,483,647. The combination of msg_id and language must be unique; an error is returned if the ID already exists for the specified language.   [ @severity = ]se...
