it means:
you created 2 clocks with same clock source.
For ex;
1. create_clock .... clk_source
cretate_generated_clock ..... -source clk_source ... clk_a
create_generated_clock ..... -source clk_source -revert ... clk_b
your violation happens between clk_a and clk_b
please divided these 2 clocks, then set false path, then this question solved.
for ex:
create_clock .... clk_a ( dont use -source option )
create_clock .... clk_b ( dont use -source option )
set_false path -from [get_clocks clk_a] -to [get_clocks clk_b]